diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-06-08 11:44:56 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-07-12 10:04:19 -0400 |
commit | be12af3ef5e61ebc44d065e121424ac605d7bb8e (patch) | |
tree | 00f858b381e073359853abe0389bc7a51a8a5a06 /fs/namei.c | |
parent | 6035a27b25ab9dadc8c3d5c5df5eae3fca62fc95 (diff) |
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/namei.c')
-rw-r--r-- | fs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c index d2aeb282ed05..117b118853f2 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -3475,7 +3475,7 @@ static int do_tmpfile(struct nameidata *nd, unsigned flags, | |||
3475 | if (error) | 3475 | if (error) |
3476 | goto out2; | 3476 | goto out2; |
3477 | file->f_path.mnt = path.mnt; | 3477 | file->f_path.mnt = path.mnt; |
3478 | error = finish_open(file, child, NULL, opened); | 3478 | error = finish_open(file, child, NULL); |
3479 | out2: | 3479 | out2: |
3480 | mnt_drop_write(path.mnt); | 3480 | mnt_drop_write(path.mnt); |
3481 | out: | 3481 | out: |