diff options
author | Phillip Lougher <phillip@lougher.demon.co.uk> | 2011-05-19 21:26:43 -0400 |
---|---|---|
committer | Phillip Lougher <phillip@lougher.demon.co.uk> | 2011-05-25 13:21:31 -0400 |
commit | 82de647e1f81fd89afc48608d889dd3b33cb8983 (patch) | |
tree | 847b7b40ed273eaa755c27bef6b1a20d201273c2 /fs/squashfs/xattr_id.c | |
parent | 117a91e0f25fd7698e20ac3dfa62086be3dc82a3 (diff) |
Squashfs: move table allocation into squashfs_read_table()
This eliminates a lot of duplicate code.
Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
Diffstat (limited to 'fs/squashfs/xattr_id.c')
-rw-r--r-- | fs/squashfs/xattr_id.c | 34 |
1 files changed, 9 insertions, 25 deletions
diff --git a/fs/squashfs/xattr_id.c b/fs/squashfs/xattr_id.c index 05385dbe1465..51a7bd0cc449 100644 --- a/fs/squashfs/xattr_id.c +++ b/fs/squashfs/xattr_id.c | |||
@@ -67,34 +67,18 @@ __le64 *squashfs_read_xattr_id_table(struct super_block *sb, u64 start, | |||
67 | u64 *xattr_table_start, int *xattr_ids) | 67 | u64 *xattr_table_start, int *xattr_ids) |
68 | { | 68 | { |
69 | unsigned int len; | 69 | unsigned int len; |
70 | __le64 *xid_table; | 70 | struct squashfs_xattr_id_table *id_table; |
71 | struct squashfs_xattr_id_table id_table; | 71 | |
72 | int err; | 72 | id_table = squashfs_read_table(sb, start, sizeof(*id_table)); |
73 | if (IS_ERR(id_table)) | ||
74 | return (__le64 *) id_table; | ||
73 | 75 | ||
74 | err = squashfs_read_table(sb, &id_table, start, sizeof(id_table)); | 76 | *xattr_table_start = le64_to_cpu(id_table->xattr_table_start); |
75 | if (err < 0) { | 77 | *xattr_ids = le32_to_cpu(id_table->xattr_ids); |
76 | ERROR("unable to read xattr id table\n"); | 78 | kfree(id_table); |
77 | return ERR_PTR(err); | ||
78 | } | ||
79 | *xattr_table_start = le64_to_cpu(id_table.xattr_table_start); | ||
80 | *xattr_ids = le32_to_cpu(id_table.xattr_ids); | ||
81 | len = SQUASHFS_XATTR_BLOCK_BYTES(*xattr_ids); | 79 | len = SQUASHFS_XATTR_BLOCK_BYTES(*xattr_ids); |
82 | 80 | ||
83 | TRACE("In read_xattr_index_table, length %d\n", len); | 81 | TRACE("In read_xattr_index_table, length %d\n", len); |
84 | 82 | ||
85 | /* Allocate xattr id lookup table indexes */ | 83 | return squashfs_read_table(sb, start + sizeof(*id_table), len); |
86 | xid_table = kmalloc(len, GFP_KERNEL); | ||
87 | if (xid_table == NULL) { | ||
88 | ERROR("Failed to allocate xattr id index table\n"); | ||
89 | return ERR_PTR(-ENOMEM); | ||
90 | } | ||
91 | |||
92 | err = squashfs_read_table(sb, xid_table, start + sizeof(id_table), len); | ||
93 | if (err < 0) { | ||
94 | ERROR("unable to read xattr id index table\n"); | ||
95 | kfree(xid_table); | ||
96 | return ERR_PTR(err); | ||
97 | } | ||
98 | |||
99 | return xid_table; | ||
100 | } | 84 | } |