Lines Matching defs:ida
82 struct ida {
87 ida_init(struct ida *ida)
90 idr_init(&ida->ida_idr);
94 ida_destroy(struct ida *ida)
97 idr_destroy(&ida->ida_idr);
101 ida_free(struct ida *ida, int id)
104 idr_remove(&ida->ida_idr, id);
108 ida_simple_get(struct ida *ida, unsigned start, unsigned end, gfp_t gfp)
116 id = idr_alloc(&ida->ida_idr, NULL, start, end, gfp);
123 ida_alloc_max(struct ida *ida, unsigned max, gfp_t gfp)
126 return ida_simple_get(ida, 0, max + 1, gfp);
130 ida_simple_remove(struct ida *ida, unsigned int id)
134 ida_free(ida, id);