aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-03-16 09:07:58 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2011-03-16 16:48:06 -0400
commit1a102ff92579edeff5e3d5d3c76ca49977898f00 (patch)
tree5585d724c8a996b770bb7a621563a7535a8c0496 /include/linux/fs.h
parent011949811b946bd3b72fca71200f197c6168a5f8 (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.h14
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);
1797struct file_system_type { 1797struct 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,
1821extern struct dentry *mount_bdev(struct file_system_type *fs_type, 1819extern 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));
1824extern 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);
1828extern struct dentry *mount_single(struct file_system_type *fs_type, 1822extern 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));
1831extern 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);
1835extern struct dentry *mount_nodev(struct file_system_type *fs_type, 1825extern 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));
1838extern 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);
1842void generic_shutdown_super(struct super_block *sb); 1828void generic_shutdown_super(struct super_block *sb);
1843void kill_block_super(struct super_block *sb); 1829void kill_block_super(struct super_block *sb);
1844void kill_anon_super(struct super_block *sb); 1830void kill_anon_super(struct super_block *sb);