diff options
Diffstat (limited to 'Documentation/filesystems/Locking')
-rw-r--r-- | Documentation/filesystems/Locking | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index cfbfa15a46ba..ec6a9392a173 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
@@ -97,8 +97,8 @@ prototypes: | |||
97 | void (*put_super) (struct super_block *); | 97 | void (*put_super) (struct super_block *); |
98 | void (*write_super) (struct super_block *); | 98 | void (*write_super) (struct super_block *); |
99 | int (*sync_fs)(struct super_block *sb, int wait); | 99 | int (*sync_fs)(struct super_block *sb, int wait); |
100 | void (*write_super_lockfs) (struct super_block *); | 100 | int (*freeze_fs) (struct super_block *); |
101 | void (*unlockfs) (struct super_block *); | 101 | int (*unfreeze_fs) (struct super_block *); |
102 | int (*statfs) (struct dentry *, struct kstatfs *); | 102 | int (*statfs) (struct dentry *, struct kstatfs *); |
103 | int (*remount_fs) (struct super_block *, int *, char *); | 103 | int (*remount_fs) (struct super_block *, int *, char *); |
104 | void (*clear_inode) (struct inode *); | 104 | void (*clear_inode) (struct inode *); |
@@ -119,8 +119,8 @@ delete_inode: no | |||
119 | put_super: yes yes no | 119 | put_super: yes yes no |
120 | write_super: no yes read | 120 | write_super: no yes read |
121 | sync_fs: no no read | 121 | sync_fs: no no read |
122 | write_super_lockfs: ? | 122 | freeze_fs: ? |
123 | unlockfs: ? | 123 | unfreeze_fs: ? |
124 | statfs: no no no | 124 | statfs: no no no |
125 | remount_fs: yes yes maybe (see below) | 125 | remount_fs: yes yes maybe (see below) |
126 | clear_inode: no | 126 | clear_inode: no |