diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-12 22:53:00 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:52:39 -0500 |
commit | a5166169f9b920cae3c503910cb66a3ac5dd846d (patch) | |
tree | ba62f9f2227c4eff9ad6d473f674f72443fba0fb /include/linux/fs.h | |
parent | 5352d3b65ae6f38e71e16f704414c1db4b4f7228 (diff) | |
download | op-kernel-dev-a5166169f9b920cae3c503910cb66a3ac5dd846d.zip op-kernel-dev-a5166169f9b920cae3c503910cb66a3ac5dd846d.tar.gz |
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index e0bc4ff..ed17e54 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1440,7 +1440,7 @@ struct super_block { struct block_device *s_bdev; struct backing_dev_info *s_bdi; struct mtd_info *s_mtd; - struct list_head s_instances; + struct hlist_node s_instances; struct quota_info s_dquot; /* Diskquota specific options */ int s_frozen; @@ -1864,7 +1864,7 @@ struct file_system_type { void (*kill_sb) (struct super_block *); struct module *owner; struct file_system_type * next; - struct list_head fs_supers; + struct hlist_head fs_supers; struct lock_class_key s_lock_key; struct lock_class_key s_umount_key; |