On Wed, 14 Oct 2015 14:23:36 -0400 Benjamin Coddington <bcodding@xxxxxxxxxx> wrote: > > Signed-off-by: Benjamin Coddington <bcodding@xxxxxxxxxx> > --- > fs/locks.c | 8 +++----- > 1 files changed, 3 insertions(+), 5 deletions(-) > > diff --git a/fs/locks.c b/fs/locks.c > index 2a54c80..8efd9f8 100644 > --- a/fs/locks.c > +++ b/fs/locks.c > @@ -1711,8 +1711,7 @@ static int generic_delete_lease(struct file *filp, void *owner) > { > int error = -EAGAIN; > struct file_lock *fl, *victim = NULL; > - struct dentry *dentry = filp->f_path.dentry; > - struct inode *inode = dentry->d_inode; > + struct inode *inode = file_inode(filp); > struct file_lock_context *ctx = inode->i_flctx; > LIST_HEAD(dispose); > > @@ -1751,8 +1750,7 @@ static int generic_delete_lease(struct file *filp, void *owner) > int generic_setlease(struct file *filp, long arg, struct file_lock **flp, > void **priv) > { > - struct dentry *dentry = filp->f_path.dentry; > - struct inode *inode = dentry->d_inode; > + struct inode *inode = file_inode(filp); > int error; > > if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE)) > @@ -2107,7 +2105,7 @@ static int do_lock_file_wait(struct file *filp, unsigned int cmd, > return error; > } > > -/* Ensure that fl->fl_filp has compatible f_mode for F_SETLK calls */ > +/* Ensure that fl->fl_file has compatible f_mode for F_SETLK calls */ > static int > check_fmode_for_setlk(struct file_lock *fl) > { Thanks -- I'll merge this for v4.4. -- Jeff Layton <jlayton@xxxxxxxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html