aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiu Bo <bo.li.liu@oracle.com>2012-09-14 04:58:06 -0400
committerChris Mason <chris.mason@fusionio.com>2012-10-04 09:39:57 -0400
commit2e90cf858fd2639eae2fb3f2173f7633cb15bf38 (patch)
tree2a7934cfe1640c4e7d8e7939cf5dc6ea5457fc9a
parentab26e9d6c8a760aa5c4518eb2cb1a85516b3a4f7 (diff)
Btrfs: cleanup fs_info->hashers
fs_info->hashers is now an obsolete one. Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
-rw-r--r--fs/btrfs/ctree.h1
-rw-r--r--fs/btrfs/disk-io.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index d66dc1c6a40..1372057e1ec 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -1253,7 +1253,6 @@ struct btrfs_fs_info {
1253 struct mutex reloc_mutex; 1253 struct mutex reloc_mutex;
1254 1254
1255 struct list_head trans_list; 1255 struct list_head trans_list;
1256 struct list_head hashers;
1257 struct list_head dead_roots; 1256 struct list_head dead_roots;
1258 struct list_head caching_block_groups; 1257 struct list_head caching_block_groups;
1259 1258
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 8d633e3e391..5d3f813e13a 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -1984,7 +1984,6 @@ int open_ctree(struct super_block *sb,
1984 INIT_LIST_HEAD(&fs_info->trans_list); 1984 INIT_LIST_HEAD(&fs_info->trans_list);
1985 INIT_LIST_HEAD(&fs_info->dead_roots); 1985 INIT_LIST_HEAD(&fs_info->dead_roots);
1986 INIT_LIST_HEAD(&fs_info->delayed_iputs); 1986 INIT_LIST_HEAD(&fs_info->delayed_iputs);
1987 INIT_LIST_HEAD(&fs_info->hashers);
1988 INIT_LIST_HEAD(&fs_info->delalloc_inodes); 1987 INIT_LIST_HEAD(&fs_info->delalloc_inodes);
1989 INIT_LIST_HEAD(&fs_info->ordered_operations); 1988 INIT_LIST_HEAD(&fs_info->ordered_operations);
1990 INIT_LIST_HEAD(&fs_info->caching_block_groups); 1989 INIT_LIST_HEAD(&fs_info->caching_block_groups);