Home
last modified time | relevance | path

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

/Linux-v4.19/lib/
Didr.c9 DEFINE_PER_CPU(struct ida_bitmap *, ida_bitmap);
371 struct ida_bitmap *bitmap; in ida_get_new_above()
408 bitmap = this_cpu_xchg(ida_bitmap, NULL); in ida_get_new_above()
439 bitmap = this_cpu_xchg(ida_bitmap, NULL); in ida_get_new_above()
454 struct ida_bitmap *bitmap; in ida_remove()
509 struct ida_bitmap *bitmap = rcu_dereference_raw(*slot); in ida_destroy()
Dradix-tree.c352 struct ida_bitmap *bitmap = entry; in dump_ida_node()
2119 if (!this_cpu_read(ida_bitmap)) { in ida_pre_get()
2120 struct ida_bitmap *bitmap = kzalloc(sizeof(*bitmap), gfp); in ida_pre_get()
2123 if (this_cpu_cmpxchg(ida_bitmap, NULL, bitmap)) in ida_pre_get()
2269 kfree(per_cpu(ida_bitmap, cpu)); in radix_tree_cpu_dead()
2270 per_cpu(ida_bitmap, cpu) = NULL; in radix_tree_cpu_dead()
/Linux-v4.19/include/linux/
Didr.h224 struct ida_bitmap { struct
228 DECLARE_PER_CPU(struct ida_bitmap *, ida_bitmap); argument