Commit 1f24cd31 authored by Al Viro's avatar Al Viro
Browse files

nfs_finish_open(): don't open-code file_inode()

parent e6ae4381
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2022,7 +2022,7 @@ static int nfs_finish_open(struct nfs_open_context *ctx,
	err = finish_open(file, dentry, do_open);
	if (err)
		goto out;
	if (S_ISREG(file->f_path.dentry->d_inode->i_mode))
	if (S_ISREG(file_inode(file)->i_mode))
		nfs_file_set_open_context(file, ctx);
	else
		err = -EOPENSTALE;