Lines Matching refs:nreg
238 struct dm_region *reg, *nreg; in dm_region_hash_destroy() local
242 list_for_each_entry_safe(reg, nreg, rh->buckets + h, in dm_region_hash_destroy()
288 struct dm_region *reg, *nreg; in __rh_alloc() local
290 nreg = mempool_alloc(rh->region_pool, GFP_ATOMIC); in __rh_alloc()
291 if (unlikely(!nreg)) in __rh_alloc()
292 nreg = kmalloc(sizeof(*nreg), GFP_NOIO | __GFP_NOFAIL); in __rh_alloc()
294 nreg->state = rh->log->type->in_sync(rh->log, region, 1) ? in __rh_alloc()
296 nreg->rh = rh; in __rh_alloc()
297 nreg->key = region; in __rh_alloc()
298 INIT_LIST_HEAD(&nreg->list); in __rh_alloc()
299 atomic_set(&nreg->pending, 0); in __rh_alloc()
300 bio_list_init(&nreg->delayed_bios); in __rh_alloc()
306 mempool_free(nreg, rh->region_pool); in __rh_alloc()
308 __rh_insert(rh, nreg); in __rh_alloc()
309 if (nreg->state == DM_RH_CLEAN) { in __rh_alloc()
311 list_add(&nreg->list, &rh->clean_regions); in __rh_alloc()
315 reg = nreg; in __rh_alloc()