Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/fs/zfs/
H A Dbplist.c48 bplist_entry_t *bpe = kmem_alloc(sizeof (*bpe), KM_SLEEP); in bplist_append() local
51 bpe->bpe_blk = *bp; in bplist_append()
52 list_insert_tail(&bpl->bpl_list, bpe); in bplist_append()
65 bplist_entry_t *bpe; in bplist_iterate() local
68 while (bpe = list_head(&bpl->bpl_list)) { in bplist_iterate()
69 bplist_iterate_last_removed = bpe; in bplist_iterate()
70 list_remove(&bpl->bpl_list, bpe); in bplist_iterate()
72 func(arg, &bpe->bpe_blk, tx); in bplist_iterate()
73 kmem_free(bpe, sizeof (*bpe)); in bplist_iterate()