Home
last modified time | relevance | path

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

/linux/kernel/trace/
H A Dtracing_map.c526 idx = key_hash >> (32 - (map->map_bits + 1)); in __tracing_map_insert()
768 struct tracing_map *tracing_map_create(unsigned int map_bits, in tracing_map_create() argument
776 if (map_bits < TRACING_MAP_BITS_MIN || in tracing_map_create()
777 map_bits > TRACING_MAP_BITS_MAX) in tracing_map_create()
784 map->map_bits = map_bits; in tracing_map_create()
785 map->max_elts = (1 << map_bits); in tracing_map_create()
788 map->map_size = (1 << (map_bits + 1)); in tracing_map_create()
H A Dtracing_map.h185 unsigned int map_bits; member
241 tracing_map_create(unsigned int map_bits,