Home
last modified time | relevance | path

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

/linux/fs/resctrl/
H A Drdtgroup.c146 static unsigned long *closid_free_map; variable
168 closid_free_map = bitmap_alloc(rdt_min_closid, GFP_KERNEL); in closid_init()
169 if (!closid_free_map) in closid_init()
171 bitmap_fill(closid_free_map, rdt_min_closid); in closid_init()
174 __clear_bit(RESCTRL_RESERVED_CLOSID, closid_free_map); in closid_init()
182 bitmap_free(closid_free_map); in closid_exit()
183 closid_free_map = NULL; in closid_exit()
200 closid = find_first_bit(closid_free_map, closid_free_map_len); in closid_alloc()
204 __clear_bit(closid, closid_free_map); in closid_alloc()
213 __set_bit(closid, closid_free_map); in closid_free()
[all …]