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

/linux-master/fs/xfs/libxfs/
H A Dxfs_rmap.c121 struct xfs_btree_cur *rcur,
131 trace_xfs_rmap_insert(rcur->bc_mp, rcur->bc_ag.pag->pag_agno, agbno,
134 error = xfs_rmap_lookup_eq(rcur, agbno, len, owner, offset, flags, &i);
137 if (XFS_IS_CORRUPT(rcur->bc_mp, i != 0)) {
138 xfs_btree_mark_sick(rcur);
143 rcur->bc_rec.r.rm_startblock = agbno;
144 rcur->bc_rec.r.rm_blockcount = len;
145 rcur->bc_rec.r.rm_owner = owner;
146 rcur
120 xfs_rmap_insert( struct xfs_btree_cur *rcur, xfs_agblock_t agbno, xfs_extlen_t len, uint64_t owner, uint64_t offset, unsigned int flags) argument
164 xfs_rmap_delete( struct xfs_btree_cur *rcur, xfs_agblock_t agbno, xfs_extlen_t len, uint64_t owner, uint64_t offset, unsigned int flags) argument
2577 xfs_rmap_finish_one_cleanup( struct xfs_trans *tp, struct xfs_btree_cur *rcur, int error) argument
2594 __xfs_rmap_finish_intent( struct xfs_btree_cur *rcur, enum xfs_rmap_intent_type op, xfs_agblock_t bno, xfs_extlen_t len, const struct xfs_owner_info *oinfo, bool unwritten) argument
2638 struct xfs_btree_cur *rcur; local
[all...]
H A Dxfs_refcount.c38 STATIC int __xfs_refcount_cow_alloc(struct xfs_btree_cur *rcur,
40 STATIC int __xfs_refcount_cow_free(struct xfs_btree_cur *rcur,
1327 struct xfs_btree_cur *rcur,
1332 if (rcur == NULL)
1334 agbp = rcur->bc_ag.agbp;
1335 xfs_btree_del_cursor(rcur, error);
1381 struct xfs_btree_cur *rcur; local
1401 rcur = *pcur;
1402 if (rcur != NULL && rcur
1325 xfs_refcount_finish_one_cleanup( struct xfs_trans *tp, struct xfs_btree_cur *rcur, int error) argument
1845 __xfs_refcount_cow_alloc( struct xfs_btree_cur *rcur, xfs_agblock_t agbno, xfs_extlen_t aglen) argument
1862 __xfs_refcount_cow_free( struct xfs_btree_cur *rcur, xfs_agblock_t agbno, xfs_extlen_t aglen) argument
[all...]
H A Dxfs_rmap.h131 int xfs_rmap_insert(struct xfs_btree_cur *rcur, xfs_agblock_t agbno,
186 struct xfs_btree_cur *rcur, int error);
189 int __xfs_rmap_finish_intent(struct xfs_btree_cur *rcur,
H A Dxfs_refcount.h80 struct xfs_btree_cur *rcur, int error);
H A Dxfs_ialloc.c1347 struct xfs_btree_cur *rcur; /* right search cursor */ local
1375 error = xfs_btree_dup_cursor(lcur, &rcur);
1379 error = xfs_inobt_lookup(rcur, pagino, XFS_LOOKUP_GE, &j);
1383 error = xfs_inobt_get_rec(rcur, &rrec, &j);
1407 *ocur = rcur;
1409 xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR);
1415 *ocur = rcur;
1418 xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR);
1424 xfs_btree_del_cursor(rcur, XFS_BTREE_ERROR);
/linux-master/kernel/bpf/
H A Dverifier.c7865 const struct bpf_reg_state *rcur,
7869 struct bpf_reg_state *rold, struct bpf_reg_state *rcur,
7874 if (rold->type != rcur->type)
7876 if (rold->precise || rcur->precise || regs_exact(rold, rcur, idmap))
7878 __mark_reg_unknown(env, rcur);
16503 const struct bpf_reg_state *rcur,
16506 return memcmp(rold, rcur, offsetof(struct bpf_reg_state, id)) == 0 &&
16507 check_ids(rold->id, rcur->id, idmap) &&
16508 check_ids(rold->ref_obj_id, rcur
7868 maybe_widen_reg(struct bpf_verifier_env *env, struct bpf_reg_state *rold, struct bpf_reg_state *rcur, struct bpf_idmap *idmap) argument
16502 regs_exact(const struct bpf_reg_state *rold, const struct bpf_reg_state *rcur, struct bpf_idmap *idmap) argument
16518 regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold, struct bpf_reg_state *rcur, struct bpf_idmap *idmap, enum exact_level exact) argument
[all...]

Completed in 171 milliseconds