diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-06-08 17:44:56 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-07-12 16:04:19 +0200 |
commit | be12af3ef5e61ebc44d065e121424ac605d7bb8e (patch) | |
tree | 00f858b381e073359853abe0389bc7a51a8a5a06 /fs/nfs/dir.c | |
parent | IMA: don't propagate opened through the entire thing (diff) | |
download | linux-be12af3ef5e61ebc44d065e121424ac605d7bb8e.tar.xz linux-be12af3ef5e61ebc44d065e121424ac605d7bb8e.zip |
getting rid of 'opened' argument of ->atomic_open() - part 1
'opened' argument of finish_open() is unused. Kill it.
Signed-off-by Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfs/dir.c')
-rw-r--r-- | fs/nfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 0ac50983fc4e..22176a3818d5 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -1439,7 +1439,7 @@ static int nfs_finish_open(struct nfs_open_context *ctx, { int err; - err = finish_open(file, dentry, do_open, opened); + err = finish_open(file, dentry, do_open); if (err) goto out; if (S_ISREG(file->f_path.dentry->d_inode->i_mode)) |