Lines Matching refs:left

2790 	xfs_bmbt_irec_t		left;	/* left neighbor extent entry */  in xfs_bmap_add_extent_hole_delay()  local
2806 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left); in xfs_bmap_add_extent_hole_delay()
2808 if (isnullstartblock(left.br_startblock)) in xfs_bmap_add_extent_hole_delay()
2829 left.br_startoff + left.br_blockcount == new->br_startoff && in xfs_bmap_add_extent_hole_delay()
2830 left.br_blockcount + new->br_blockcount <= MAXEXTLEN) in xfs_bmap_add_extent_hole_delay()
2837 (left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_delay()
2852 temp = left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_delay()
2857 oldlen = startblockval(left.br_startblock) + in xfs_bmap_add_extent_hole_delay()
2875 temp = left.br_blockcount + new->br_blockcount; in xfs_bmap_add_extent_hole_delay()
2879 oldlen = startblockval(left.br_startblock) + in xfs_bmap_add_extent_hole_delay()
2936 xfs_bmbt_irec_t left; /* left neighbor extent entry */ in xfs_bmap_add_extent_hole_real() local
2962 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &left); in xfs_bmap_add_extent_hole_real()
2963 if (isnullstartblock(left.br_startblock)) in xfs_bmap_add_extent_hole_real()
2983 left.br_startoff + left.br_blockcount == new->br_startoff && in xfs_bmap_add_extent_hole_real()
2984 left.br_startblock + left.br_blockcount == new->br_startblock && in xfs_bmap_add_extent_hole_real()
2985 left.br_state == new->br_state && in xfs_bmap_add_extent_hole_real()
2986 left.br_blockcount + new->br_blockcount <= MAXEXTLEN) in xfs_bmap_add_extent_hole_real()
2995 left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_real()
3013 left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_real()
3039 error = xfs_bmbt_update(bma->cur, left.br_startoff, in xfs_bmap_add_extent_hole_real()
3040 left.br_startblock, in xfs_bmap_add_extent_hole_real()
3041 left.br_blockcount + in xfs_bmap_add_extent_hole_real()
3044 left.br_state); in xfs_bmap_add_extent_hole_real()
3059 left.br_blockcount + new->br_blockcount); in xfs_bmap_add_extent_hole_real()
3066 error = xfs_bmbt_lookup_eq(bma->cur, left.br_startoff, in xfs_bmap_add_extent_hole_real()
3067 left.br_startblock, left.br_blockcount, in xfs_bmap_add_extent_hole_real()
3072 error = xfs_bmbt_update(bma->cur, left.br_startoff, in xfs_bmap_add_extent_hole_real()
3073 left.br_startblock, in xfs_bmap_add_extent_hole_real()
3074 left.br_blockcount + in xfs_bmap_add_extent_hole_real()
3076 left.br_state); in xfs_bmap_add_extent_hole_real()
5424 struct xfs_bmbt_irec *left, /* preceding extent */ in xfs_bmse_can_merge() argument
5436 if ((left->br_startoff + left->br_blockcount != startoff) || in xfs_bmse_can_merge()
5437 (left->br_startblock + left->br_blockcount != got->br_startblock) || in xfs_bmse_can_merge()
5438 (left->br_state != got->br_state) || in xfs_bmse_can_merge()
5439 (left->br_blockcount + got->br_blockcount > MAXEXTLEN)) in xfs_bmse_can_merge()
5466 struct xfs_bmbt_irec left; in xfs_bmse_merge() local
5472 xfs_bmbt_get_all(leftp, &left); in xfs_bmse_merge()
5473 blockcount = left.br_blockcount + got.br_blockcount; in xfs_bmse_merge()
5477 ASSERT(xfs_bmse_can_merge(&left, &got, shift)); in xfs_bmse_merge()
5512 error = xfs_bmbt_lookup_eq(cur, left.br_startoff, left.br_startblock, in xfs_bmse_merge()
5513 left.br_blockcount, &i); in xfs_bmse_merge()
5518 left.br_blockcount = blockcount; in xfs_bmse_merge()
5520 return xfs_bmbt_update(cur, left.br_startoff, left.br_startblock, in xfs_bmse_merge()
5521 left.br_blockcount, left.br_state); in xfs_bmse_merge()