diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-03 08:19:23 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-03 08:23:29 -0400 |
commit | 48bde8d3620f5f3c6ae9ff599eb404055ae51664 (patch) | |
tree | 7b59e511bcb0258bccafe3224db41a312b4fc2f0 /Documentation/filesystems/Locking | |
parent | af51a2ac36d1f96bee30438ec95a51e4635d1e33 (diff) |
Document ->tmpfile()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation/filesystems/Locking')
-rw-r--r-- | Documentation/filesystems/Locking | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index 7d9ca7a83fcc..e95d3131309e 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
@@ -64,6 +64,7 @@ prototypes: | |||
64 | int (*atomic_open)(struct inode *, struct dentry *, | 64 | int (*atomic_open)(struct inode *, struct dentry *, |
65 | struct file *, unsigned open_flag, | 65 | struct file *, unsigned open_flag, |
66 | umode_t create_mode, int *opened); | 66 | umode_t create_mode, int *opened); |
67 | int (*tmpfile) (struct inode *, struct dentry *, umode_t); | ||
67 | 68 | ||
68 | locking rules: | 69 | locking rules: |
69 | all may block | 70 | all may block |
@@ -91,6 +92,7 @@ removexattr: yes | |||
91 | fiemap: no | 92 | fiemap: no |
92 | update_time: no | 93 | update_time: no |
93 | atomic_open: yes | 94 | atomic_open: yes |
95 | tmpfile: no | ||
94 | 96 | ||
95 | Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on | 97 | Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on |
96 | victim. | 98 | victim. |