Home
last modified time | relevance | path

Searched refs:newbno1 (Results 1 – 1 of 1) sorted by relevance

/linux-6.1.9/fs/xfs/libxfs/
Dxfs_alloc.c344 xfs_agblock_t newbno1; /* return block number */ in xfs_alloc_compute_diff() local
362 if ((newbno1 = roundup(freebno, alignment)) >= freeend) in xfs_alloc_compute_diff()
363 newbno1 = NULLAGBLOCK; in xfs_alloc_compute_diff()
365 newbno1 = roundup(wantbno, alignment); in xfs_alloc_compute_diff()
366 newbno2 = newbno1 - alignment; in xfs_alloc_compute_diff()
367 if (newbno1 >= freeend) in xfs_alloc_compute_diff()
368 newbno1 = NULLAGBLOCK; in xfs_alloc_compute_diff()
370 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1); in xfs_alloc_compute_diff()
375 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) { in xfs_alloc_compute_diff()
378 XFS_ABSDIFF(newbno1, wantbno) > in xfs_alloc_compute_diff()
[all …]