Lines Matching defs:table
26 * Map xattr id using the xattr id look up table
56 * Read uncompressed xattr id lookup table indexes from disk into memory
64 __le64 *table;
86 * The computed size of the index table (len bytes) should exactly
87 * match the table start and end points
95 table = squashfs_read_table(sb, start, len);
96 if (IS_ERR(table))
97 return table;
99 /* table[0], table[1], ... table[indexes - 1] store the locations
101 * the next (i.e. table[0] < table[1]), and the difference between them
102 * should be SQUASHFS_METADATA_SIZE or less. table[indexes - 1]
106 * Finally xattr_table_start should be less than table[0].
109 start = le64_to_cpu(table[n]);
110 end = le64_to_cpu(table[n + 1]);
114 kfree(table);
119 start = le64_to_cpu(table[indexes - 1]);
122 kfree(table);
126 if (*xattr_table_start >= le64_to_cpu(table[0])) {
127 kfree(table);
131 return table;