• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/

Lines Matching defs:agbno

240 	args->agbno = NULLAGBLOCK;
434 (void *)(__psunsigned_t)args->agbno,
460 xfs_agblock_t agbno, /* a.g. relative block number */
471 (void *)(__psunsigned_t)agbno,
514 xfs_agblock_t agbno, /* a.g. relative block number */
527 (void *)(__psunsigned_t)agbno,
585 if (args->agbno != NULLAGBLOCK) {
594 ASSERT(args->agbno % args->alignment == 0);
609 args->agbno, args->len);
657 if ((error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i)))
664 args->agbno = NULLAGBLOCK;
673 ASSERT(fbno <= args->agbno);
674 minend = args->agbno + args->minlen;
675 maxend = args->agbno + args->maxlen;
682 args->agbno = NULLAGBLOCK;
693 args->len = end - args->agbno;
700 ASSERT(args->agbno + rlen <= fend);
701 end = args->agbno + rlen;
703 * We are allocating agbno for rlen [agbno .. end]
708 ASSERT(args->agbno + args->len <=
711 args->agbno, args->len, XFSA_FIXUP_BNO_OK))) {
858 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
893 args->agbno = bnew;
932 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1013 ltdiff = xfs_alloc_compute_diff(args->agbno, rlen,
1035 if (gtbnoa >= args->agbno + ltdiff) {
1053 args->agbno, rlen,
1110 gtdiff = xfs_alloc_compute_diff(args->agbno, rlen,
1132 if (ltbnoa <= args->agbno - gtdiff) {
1149 args->agbno, rlen,
1201 args->agbno = NULLAGBLOCK;
1233 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment, ltbno,
1238 args->agbno = ltnew;
1380 args->agbno = NULLAGBLOCK;
1397 args->agbno = rbno;
1399 args->agbno + args->len <=
1461 args->agbno = fbno;
1463 args->agbno + args->len <=
1488 args->agbno = NULLAGBLOCK;
1951 targs.agbno = 0;
1965 if (targs.agbno == NULLAGBLOCK) {
1975 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
2251 args->agbno = NULLAGBLOCK;
2299 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2316 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2398 args->agbno = NULLAGBLOCK;
2407 args->agbno = XFS_FSB_TO_AGBNO(mp,
2428 if (args->agbno == NULLAGBLOCK)
2431 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2435 ASSERT(args->agbno % args->alignment == 0);
2466 args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno);
2473 ASSERT((args.agbno + len) <=
2476 error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0);