Home
last modified time | relevance | path

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

/openbmc/linux/drivers/md/
H A Ddm-exception-store.c199 struct dm_exception_store *tmp_store; in dm_exception_store_create() local
207 tmp_store = kzalloc(sizeof(*tmp_store), GFP_KERNEL); in dm_exception_store_create()
208 if (!tmp_store) { in dm_exception_store_create()
230 tmp_store->type = type; in dm_exception_store_create()
231 tmp_store->snap = snap; in dm_exception_store_create()
233 r = set_chunk_size(tmp_store, argv[1], &ti->error); in dm_exception_store_create()
237 r = type->ctr(tmp_store, (strlen(argv[0]) > 1 ? &argv[0][1] : NULL)); in dm_exception_store_create()
244 *store = tmp_store; in dm_exception_store_create()
250 kfree(tmp_store); in dm_exception_store_create()