diff options
author | Al Viro | 2018-06-08 13:32:02 -0400 |
---|---|---|
committer | Al Viro | 2018-07-12 10:04:20 -0400 |
commit | 44907d79002466049fdbb8ef15730d185e0808b4 (patch) | |
tree | 3eedf1bdbd36f1d99da4710d7f934c286474f230 /include/linux/fs.h | |
parent | b452a458caaa95d02b74897d35e87aa080122f07 (diff) |
get rid of 'opened' argument of ->atomic_open() - part 3
now it can be done...
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 70be3e4c26ac..c25896b30e9f 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1781,7 +1781,7 @@ struct inode_operations { int (*update_time)(struct inode *, struct timespec64 *, int); int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned open_flag, - umode_t create_mode, int *opened); + umode_t create_mode); int (*tmpfile) (struct inode *, struct dentry *, umode_t); int (*set_acl)(struct inode *, struct posix_acl *, int); } ____cacheline_aligned; |