Searched refs:active_objs (Results 1 - 9 of 9) sorted by relevance
/kernel/linux/linux-6.6/scripts/gdb/linux/ |
H A D | slab.py | 290 gdb.write("{:^18} | {:^20} | {:^12} | {:^12} | {:^8} | {:^11} | {:^13}\n".format('Pointer', 'name', 'active_objs', 'num_objs', 'objsize', 'objperslab', 'pagesperslab')) 311 active_objs = nr_objs - nr_free 316 gdb.write("{:18s} | {:20.19s} | {:12} | {:12} | {:8} | {:11} | {:13}\n".format(hex(cache), cache['name'].string(), str(active_objs), str(num_objs), str(cache['size']), str(objects_per_slab), str(1 << cache_order)))
|
/kernel/linux/linux-5.10/mm/ |
H A D | slab_common.c | 923 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>"); in print_slabinfo_header() 957 s->name, sinfo.active_objs, sinfo.num_objs, s->size, in cache_show() 1006 (sinfo.active_objs * s->size) / 1024, in dump_unreclaimable_slab()
|
H A D | slab.h | 179 unsigned long active_objs; member
|
H A D | slab.c | 4009 unsigned long active_objs, num_objs, active_slabs; in get_slabinfo() local 4030 active_objs = num_objs - free_objs; in get_slabinfo() 4032 sinfo->active_objs = active_objs; in get_slabinfo()
|
H A D | slub.c | 5757 sinfo->active_objs = nr_objs - nr_free; in get_slabinfo()
|
/kernel/linux/linux-6.6/mm/ |
H A D | slab_common.c | 1262 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>"); in print_slabinfo_header() 1296 s->name, sinfo.active_objs, sinfo.num_objs, s->size, in cache_show() 1345 (sinfo.active_objs * s->size) / 1024, in dump_unreclaimable_slab()
|
H A D | slab.h | 373 unsigned long active_objs; member
|
H A D | slab.c | 3869 unsigned long active_objs, num_objs, active_slabs; in get_slabinfo() local 3890 active_objs = num_objs - free_objs; in get_slabinfo() 3892 sinfo->active_objs = active_objs; in get_slabinfo()
|
H A D | slub.c | 6510 sinfo->active_objs = nr_objs - nr_free; in get_slabinfo()
|
Completed in 33 milliseconds