Lines Matching refs:targs
1860 xfs_alloc_arg_t targs; /* local allocation arguments */ in xfs_alloc_fix_freelist() local
1966 memset(&targs, 0, sizeof(targs)); in xfs_alloc_fix_freelist()
1967 targs.tp = tp; in xfs_alloc_fix_freelist()
1968 targs.mp = mp; in xfs_alloc_fix_freelist()
1969 targs.agbp = agbp; in xfs_alloc_fix_freelist()
1970 targs.agno = args->agno; in xfs_alloc_fix_freelist()
1971 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1; in xfs_alloc_fix_freelist()
1972 targs.type = XFS_ALLOCTYPE_THIS_AG; in xfs_alloc_fix_freelist()
1973 targs.pag = pag; in xfs_alloc_fix_freelist()
1974 if ((error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp))) in xfs_alloc_fix_freelist()
1980 targs.agbno = 0; in xfs_alloc_fix_freelist()
1981 targs.maxlen = need - be32_to_cpu(agf->agf_flcount); in xfs_alloc_fix_freelist()
1985 if ((error = xfs_alloc_ag_vextent(&targs))) { in xfs_alloc_fix_freelist()
1994 if (targs.agbno == NULLAGBLOCK) { in xfs_alloc_fix_freelist()
2004 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) { in xfs_alloc_fix_freelist()