Searched refs:freeend (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_alloc.c190 xfs_agblock_t freeend; /* end of freespace extent */ local
198 freeend = freebno + freelen;
201 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
203 } else if (freeend >= wantend && alignment > 1) {
206 if (newbno1 >= freeend)
209 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
213 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
222 } else if (freeend >= wantend) {
225 newbno1 = roundup(freeend - wantlen, alignment);
226 if (newbno1 > freeend
[all...]

Completed in 62 milliseconds