diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2008-04-24 07:21:56 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-04-25 09:23:25 -0400 |
commit | 42faad99658eed7ca8bd328ffa4bcb7d78c9bcca (patch) | |
tree | 8b57fb69d1922939c6ba13f512a0ae54a3a171ef /include/linux | |
parent | 78d31a3a87f84cf56004b7bc154831f2ee1186e8 (diff) | |
download | linux-3.10-42faad99658eed7ca8bd328ffa4bcb7d78c9bcca.tar.gz linux-3.10-42faad99658eed7ca8bd328ffa4bcb7d78c9bcca.tar.bz2 linux-3.10-42faad99658eed7ca8bd328ffa4bcb7d78c9bcca.zip |
[PATCH] restore sane ->umount_begin() API
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux')
-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 cc2be2cf7d4..ad41d0bbcb4 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1308,7 +1308,7 @@ struct super_operations { int (*statfs) (struct dentry *, struct kstatfs *); int (*remount_fs) (struct super_block *, int *, char *); void (*clear_inode) (struct inode *); - void (*umount_begin) (struct vfsmount *, int); + void (*umount_begin) (struct super_block *); int (*show_options)(struct seq_file *, struct vfsmount *); int (*show_stats)(struct seq_file *, struct vfsmount *); |