Home
last modified time | relevance | path

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

/mm/
Dhighmem.c67 static inline unsigned int get_next_pkmap_nr(unsigned int color) in get_next_pkmap_nr() argument
80 static inline int no_more_pkmaps(unsigned int pkmap_nr, unsigned int color) in no_more_pkmaps() argument
90 static inline int get_pkmap_entries_count(unsigned int color) in get_pkmap_entries_count() argument
100 static inline wait_queue_head_t *get_pkmap_wait_queue_head(unsigned int color) in get_pkmap_wait_queue_head() argument
219 unsigned int color = get_pkmap_color(page); in map_new_virtual() local
222 count = get_pkmap_entries_count(color); in map_new_virtual()
225 last_pkmap_nr = get_next_pkmap_nr(color); in map_new_virtual()
226 if (no_more_pkmaps(last_pkmap_nr, color)) { in map_new_virtual()
228 count = get_pkmap_entries_count(color); in map_new_virtual()
241 get_pkmap_wait_queue_head(color); in map_new_virtual()
[all …]
Dkmemleak.c709 static void __paint_it(struct kmemleak_object *object, int color) in __paint_it() argument
711 object->min_count = color; in __paint_it()
712 if (color == KMEMLEAK_BLACK) in __paint_it()
716 static void paint_it(struct kmemleak_object *object, int color) in paint_it() argument
721 __paint_it(object, color); in paint_it()
725 static void paint_ptr(unsigned long ptr, int color) in paint_ptr() argument
733 (color == KMEMLEAK_GREY) ? "Grey" : in paint_ptr()
734 (color == KMEMLEAK_BLACK) ? "Black" : "Unknown"); in paint_ptr()
737 paint_it(object, color); in paint_ptr()