Lines Matching refs:rr
58 struct gfs2_revoke_replay *rr;
61 list_for_each_entry(rr, head, rr_list) {
62 if (rr->rr_blkno == blkno) {
69 rr->rr_where = where;
73 rr = kmalloc(sizeof(struct gfs2_revoke_replay), GFP_NOFS);
74 if (!rr)
77 rr->rr_blkno = blkno;
78 rr->rr_where = where;
79 list_add(&rr->rr_list, head);
86 struct gfs2_revoke_replay *rr;
90 list_for_each_entry(rr, &jd->jd_revoke_list, rr_list) {
91 if (rr->rr_blkno == blkno) {
100 wrap = (rr->rr_where < jd->jd_replay_tail);
102 b = (where < rr->rr_where);
111 struct gfs2_revoke_replay *rr;
114 rr = list_first_entry(head, struct gfs2_revoke_replay, rr_list);
115 list_del(&rr->rr_list);
116 kfree(rr);