• 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:fbno

302  * actual (current) free extent fbno for flen blocks.
310 xfs_agblock_t fbno, /* starting block of free extent */
331 i == 1 && nfbno1 == fbno && nflen1 == flen);
334 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
346 i == 1 && nfbno1 == fbno && nflen1 == flen);
349 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
372 if (rbno == fbno && rlen == flen)
374 else if (rbno == fbno) {
378 } else if (rbno + rlen == fbno + flen) {
379 nfbno1 = fbno;
383 nfbno1 = fbno;
384 nflen1 = rbno - fbno;
386 nflen2 = (fbno + flen) - nfbno2;
571 xfs_agblock_t fbno; /* start block of found extent */
603 if ((error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i)))
606 ASSERT(fbno <= args->agbno);
609 fend = fbno + flen;
643 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1204 xfs_agblock_t fbno; /* start of found freespace */
1227 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &fbno,
1241 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i)))
1251 xfs_alloc_compute_aligned(fbno, flen, args->alignment, args->minlen,
1255 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1265 bestfbno = fbno;
1271 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1277 xfs_alloc_compute_aligned(fbno, flen, args->alignment,
1281 (rlen <= flen && rbno + rlen <= fbno + flen),
1287 bestfbno = fbno;
1299 fbno = bestfbno;
1320 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1358 xfs_agblock_t fbno;
1365 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1377 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1380 if (fbno != NULLAGBLOCK) {
1385 args->agno, fbno, 0);
1389 args->agbno = fbno;
1409 fbno = NULLAGBLOCK;
1420 *fbnop = fbno;