Lines Matching defs:cur
275 struct revoke_entry *cur, *tmp;
279 list_for_each_entry_safe(cur, tmp, head, list) {
281 __replace_atomic_write_block(inode, cur->index,
282 cur->old_addr, NULL, true);
284 f2fs_truncate_hole(inode, start_index, cur->index);
285 start_index = cur->index + 1;
288 list_del(&cur->list);
289 kmem_cache_free(revoke_entry_slab, cur);
967 struct rb_node *cur = rb_first_cached(&dcc->root), *next;
970 while (cur) {
971 next = rb_next(cur);
975 cur_dc = rb_entry(cur, struct discard_cmd, rb_node);
980 "cur(%u, %u) next(%u, %u)",
985 cur = next;