Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/md/
Ddm-exception-store.c198 struct dm_exception_store *tmp_store; in dm_exception_store_create() local
206 tmp_store = kzalloc(sizeof(*tmp_store), GFP_KERNEL); in dm_exception_store_create()
207 if (!tmp_store) { in dm_exception_store_create()
229 tmp_store->type = type; in dm_exception_store_create()
230 tmp_store->snap = snap; in dm_exception_store_create()
232 r = set_chunk_size(tmp_store, argv[1], &ti->error); in dm_exception_store_create()
236 r = type->ctr(tmp_store, (strlen(argv[0]) > 1 ? &argv[0][1] : NULL)); in dm_exception_store_create()
243 *store = tmp_store; in dm_exception_store_create()
249 kfree(tmp_store); in dm_exception_store_create()