• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/

Lines Matching defs:leaf2

1248 	xfs_attr_leafblock_t *leaf1, *leaf2;
1258 leaf2 = blk2->bp->data;
1260 ASSERT(be16_to_cpu(leaf2->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1275 leaf2 = blk2->bp->data;
1279 hdr2 = &leaf2->hdr;
1307 * leaf2 is the destination, compact it if it looks tight.
1317 * Move high entries from leaf1 to low end of leaf2.
1320 leaf2, 0, count, state->mp);
1349 * Move low entries from leaf2 to high end of leaf1.
1351 xfs_attr_leaf_moveents(leaf2, 0, leaf1,
1364 leaf2->entries[be16_to_cpu(leaf2->hdr.count)-1].hashval);
1415 xfs_attr_leafblock_t *leaf1, *leaf2;
1425 leaf2 = blk2->bp->data;
1427 hdr2 = &leaf2->hdr;
1469 leaf1 = leaf2;
2216 * Return 0 unless leaf2 should go before leaf1.
2221 xfs_attr_leafblock_t *leaf1, *leaf2;
2224 leaf2 = leaf2_bp->data;
2226 (be16_to_cpu(leaf2->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC));
2228 (be16_to_cpu(leaf2->hdr.count) > 0) &&
2229 ((be32_to_cpu(leaf2->entries[0].hashval) <
2231 (be32_to_cpu(leaf2->entries[
2232 be16_to_cpu(leaf2->hdr.count)-1].hashval) <
2552 xfs_attr_leafblock_t *leaf1, *leaf2;
2593 leaf2 = bp2->data;
2594 ASSERT(be16_to_cpu(leaf2->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2595 ASSERT(args->index2 < be16_to_cpu(leaf2->hdr.count));
2597 entry2 = &leaf2->entries[ args->index2 ];
2610 name_loc = xfs_attr_leaf_name_local(leaf2, args->index2);
2614 name_rmt = xfs_attr_leaf_name_remote(leaf2, args->index2);
2640 XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2642 name_rmt = xfs_attr_leaf_name_remote(leaf2, args->index2);
2646 XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));