diff options
author | Christoph Hellwig <hch@tuxera.com> | 2010-10-01 05:44:02 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2010-10-01 05:44:02 +0200 |
commit | 58a818f532e83f337689358c102ba2048d1b37f5 (patch) | |
tree | 8cd9f322a93423affb9acec6fac3547c7232de5c /fs/hfsplus/super.c | |
parent | 66e5db05bb6670f314d90aba5998e6a033e4d563 (diff) |
hfsplus: remove the rsrc_inodes list
We never walk the list - the only reason for it is to make the resource fork
inodes appear hashed to the writeback code. Borrow a trick from JFS to do
that without needing a list head.
Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs/hfsplus/super.c')
-rw-r--r-- | fs/hfsplus/super.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/hfsplus/super.c b/fs/hfsplus/super.c index f310a1fdcd5..923f385b32c 100644 --- a/fs/hfsplus/super.c +++ b/fs/hfsplus/super.c @@ -318,7 +318,6 @@ static int hfsplus_fill_super(struct super_block *sb, void *data, int silent) return -ENOMEM; sb->s_fs_info = sbi; - INIT_HLIST_HEAD(&sbi->rsrc_inodes); mutex_init(&sbi->alloc_mutex); hfsplus_fill_defaults(sbi); if (!hfsplus_parse_options(data, sbi)) { |