diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-16 09:07:58 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-16 16:48:06 -0400 |
commit | 1a102ff92579edeff5e3d5d3c76ca49977898f00 (patch) | |
tree | 5585d724c8a996b770bb7a621563a7535a8c0496 /include/linux/fs.h | |
parent | 011949811b946bd3b72fca71200f197c6168a5f8 (diff) |
vfs: bury ->get_sb()
This is an ex-parrot.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index e6d3fe45981b..ffaa0e4926ed 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1797,8 +1797,6 @@ int sync_inode_metadata(struct inode *inode, int wait); | |||
1797 | struct file_system_type { | 1797 | struct file_system_type { |
1798 | const char *name; | 1798 | const char *name; |
1799 | int fs_flags; | 1799 | int fs_flags; |
1800 | int (*get_sb) (struct file_system_type *, int, | ||
1801 | const char *, void *, struct vfsmount *); | ||
1802 | struct dentry *(*mount) (struct file_system_type *, int, | 1800 | struct dentry *(*mount) (struct file_system_type *, int, |
1803 | const char *, void *); | 1801 | const char *, void *); |
1804 | void (*kill_sb) (struct super_block *); | 1802 | void (*kill_sb) (struct super_block *); |
@@ -1821,24 +1819,12 @@ extern struct dentry *mount_ns(struct file_system_type *fs_type, int flags, | |||
1821 | extern struct dentry *mount_bdev(struct file_system_type *fs_type, | 1819 | extern struct dentry *mount_bdev(struct file_system_type *fs_type, |
1822 | int flags, const char *dev_name, void *data, | 1820 | int flags, const char *dev_name, void *data, |
1823 | int (*fill_super)(struct super_block *, void *, int)); | 1821 | int (*fill_super)(struct super_block *, void *, int)); |
1824 | extern int get_sb_bdev(struct file_system_type *fs_type, | ||
1825 | int flags, const char *dev_name, void *data, | ||
1826 | int (*fill_super)(struct super_block *, void *, int), | ||
1827 | struct vfsmount *mnt); | ||
1828 | extern struct dentry *mount_single(struct file_system_type *fs_type, | 1822 | extern struct dentry *mount_single(struct file_system_type *fs_type, |
1829 | int flags, void *data, | 1823 | int flags, void *data, |
1830 | int (*fill_super)(struct super_block *, void *, int)); | 1824 | int (*fill_super)(struct super_block *, void *, int)); |
1831 | extern int get_sb_single(struct file_system_type *fs_type, | ||
1832 | int flags, void *data, | ||
1833 | int (*fill_super)(struct super_block *, void *, int), | ||
1834 | struct vfsmount *mnt); | ||
1835 | extern struct dentry *mount_nodev(struct file_system_type *fs_type, | 1825 | extern struct dentry *mount_nodev(struct file_system_type *fs_type, |
1836 | int flags, void *data, | 1826 | int flags, void *data, |
1837 | int (*fill_super)(struct super_block *, void *, int)); | 1827 | int (*fill_super)(struct super_block *, void *, int)); |
1838 | extern int get_sb_nodev(struct file_system_type *fs_type, | ||
1839 | int flags, void *data, | ||
1840 | int (*fill_super)(struct super_block *, void *, int), | ||
1841 | struct vfsmount *mnt); | ||
1842 | void generic_shutdown_super(struct super_block *sb); | 1828 | void generic_shutdown_super(struct super_block *sb); |
1843 | void kill_block_super(struct super_block *sb); | 1829 | void kill_block_super(struct super_block *sb); |
1844 | void kill_anon_super(struct super_block *sb); | 1830 | void kill_anon_super(struct super_block *sb); |