Home
last modified time | relevance | path

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

/linux-4.19.296/fs/xfs/libxfs/
Dxfs_refcount.c226 int found_rec; in xfs_refcount_delete() local
229 error = xfs_refcount_get_rec(cur, &irec, &found_rec); in xfs_refcount_delete()
232 XFS_WANT_CORRUPTED_GOTO(cur->bc_mp, found_rec == 1, out_error); in xfs_refcount_delete()
238 error = xfs_refcount_lookup_ge(cur, irec.rc_startblock, &found_rec); in xfs_refcount_delete()
341 int found_rec; in xfs_refcount_split_extent() local
345 error = xfs_refcount_lookup_le(cur, agbno, &found_rec); in xfs_refcount_split_extent()
348 if (!found_rec) in xfs_refcount_split_extent()
351 error = xfs_refcount_get_rec(cur, &rcext, &found_rec); in xfs_refcount_split_extent()
354 XFS_WANT_CORRUPTED_GOTO(cur->bc_mp, found_rec == 1, out_error); in xfs_refcount_split_extent()
373 error = xfs_refcount_insert(cur, &tmp, &found_rec); in xfs_refcount_split_extent()
[all …]