Lines Matching refs:left

2791 	xfs_bmbt_irec_t		left;	/* left neighbor extent entry */  in xfs_bmap_add_extent_hole_delay()  local
2807 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left); in xfs_bmap_add_extent_hole_delay()
2809 if (isnullstartblock(left.br_startblock)) in xfs_bmap_add_extent_hole_delay()
2830 left.br_startoff + left.br_blockcount == new->br_startoff && in xfs_bmap_add_extent_hole_delay()
2831 left.br_blockcount + new->br_blockcount <= MAXEXTLEN) in xfs_bmap_add_extent_hole_delay()
2838 (left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_delay()
2853 temp = left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_delay()
2858 oldlen = startblockval(left.br_startblock) + in xfs_bmap_add_extent_hole_delay()
2876 temp = left.br_blockcount + new->br_blockcount; in xfs_bmap_add_extent_hole_delay()
2880 oldlen = startblockval(left.br_startblock) + in xfs_bmap_add_extent_hole_delay()
2937 xfs_bmbt_irec_t left; /* left neighbor extent entry */ in xfs_bmap_add_extent_hole_real() local
2963 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &left); in xfs_bmap_add_extent_hole_real()
2964 if (isnullstartblock(left.br_startblock)) in xfs_bmap_add_extent_hole_real()
2984 left.br_startoff + left.br_blockcount == new->br_startoff && in xfs_bmap_add_extent_hole_real()
2985 left.br_startblock + left.br_blockcount == new->br_startblock && in xfs_bmap_add_extent_hole_real()
2986 left.br_state == new->br_state && in xfs_bmap_add_extent_hole_real()
2987 left.br_blockcount + new->br_blockcount <= MAXEXTLEN) in xfs_bmap_add_extent_hole_real()
2996 left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_real()
3014 left.br_blockcount + new->br_blockcount + in xfs_bmap_add_extent_hole_real()
3040 error = xfs_bmbt_update(bma->cur, left.br_startoff, in xfs_bmap_add_extent_hole_real()
3041 left.br_startblock, in xfs_bmap_add_extent_hole_real()
3042 left.br_blockcount + in xfs_bmap_add_extent_hole_real()
3045 left.br_state); in xfs_bmap_add_extent_hole_real()
3060 left.br_blockcount + new->br_blockcount); in xfs_bmap_add_extent_hole_real()
3067 error = xfs_bmbt_lookup_eq(bma->cur, left.br_startoff, in xfs_bmap_add_extent_hole_real()
3068 left.br_startblock, left.br_blockcount, in xfs_bmap_add_extent_hole_real()
3073 error = xfs_bmbt_update(bma->cur, left.br_startoff, in xfs_bmap_add_extent_hole_real()
3074 left.br_startblock, in xfs_bmap_add_extent_hole_real()
3075 left.br_blockcount + in xfs_bmap_add_extent_hole_real()
3077 left.br_state); in xfs_bmap_add_extent_hole_real()
5385 struct xfs_bmbt_irec *left, /* preceding extent */ in xfs_bmse_can_merge() argument
5397 if ((left->br_startoff + left->br_blockcount != startoff) || in xfs_bmse_can_merge()
5398 (left->br_startblock + left->br_blockcount != got->br_startblock) || in xfs_bmse_can_merge()
5399 (left->br_state != got->br_state) || in xfs_bmse_can_merge()
5400 (left->br_blockcount + got->br_blockcount > MAXEXTLEN)) in xfs_bmse_can_merge()
5427 struct xfs_bmbt_irec left; in xfs_bmse_merge() local
5433 xfs_bmbt_get_all(leftp, &left); in xfs_bmse_merge()
5434 blockcount = left.br_blockcount + got.br_blockcount; in xfs_bmse_merge()
5438 ASSERT(xfs_bmse_can_merge(&left, &got, shift)); in xfs_bmse_merge()
5473 error = xfs_bmbt_lookup_eq(cur, left.br_startoff, left.br_startblock, in xfs_bmse_merge()
5474 left.br_blockcount, &i); in xfs_bmse_merge()
5479 left.br_blockcount = blockcount; in xfs_bmse_merge()
5481 return xfs_bmbt_update(cur, left.br_startoff, left.br_startblock, in xfs_bmse_merge()
5482 left.br_blockcount, left.br_state); in xfs_bmse_merge()