aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-12-12 22:53:00 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-01-03 22:52:39 -0500
commita5166169f9b920cae3c503910cb66a3ac5dd846d (patch)
treeba62f9f2227c4eff9ad6d473f674f72443fba0fb /include/linux/fs.h
parent5352d3b65ae6f38e71e16f704414c1db4b4f7228 (diff)
vfs: convert fs_supers to hlist
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index e0bc4ffb8e7f..ed17e54fd204 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1440,7 +1440,7 @@ struct super_block {
1440 struct block_device *s_bdev; 1440 struct block_device *s_bdev;
1441 struct backing_dev_info *s_bdi; 1441 struct backing_dev_info *s_bdi;
1442 struct mtd_info *s_mtd; 1442 struct mtd_info *s_mtd;
1443 struct list_head s_instances; 1443 struct hlist_node s_instances;
1444 struct quota_info s_dquot; /* Diskquota specific options */ 1444 struct quota_info s_dquot; /* Diskquota specific options */
1445 1445
1446 int s_frozen; 1446 int s_frozen;
@@ -1864,7 +1864,7 @@ struct file_system_type {
1864 void (*kill_sb) (struct super_block *); 1864 void (*kill_sb) (struct super_block *);
1865 struct module *owner; 1865 struct module *owner;
1866 struct file_system_type * next; 1866 struct file_system_type * next;
1867 struct list_head fs_supers; 1867 struct hlist_head fs_supers;
1868 1868
1869 struct lock_class_key s_lock_key; 1869 struct lock_class_key s_lock_key;
1870 struct lock_class_key s_umount_key; 1870 struct lock_class_key s_umount_key;