2 * Slabinfo: Tool to get reports about slabs
4 * (C) 2007 sgi, Christoph Lameter
5 * (C) 2011 Linux Foundation, Christoph Lameter
9 * gcc -o slabinfo slabinfo.c
13 #include <sys/types.h>
24 #define MAX_ALIASES 500
25 #define MAX_NODES 1024
31 int aliases
, align
, cache_dma
, cpu_slabs
, destroy_by_rcu
;
32 unsigned int hwcache_align
, object_size
, objs_per_slab
;
33 unsigned int sanity_checks
, slab_size
, store_user
, trace
;
34 int order
, poison
, reclaim_account
, red_zone
;
35 unsigned long partial
, objects
, slabs
, objects_partial
, objects_total
;
36 unsigned long alloc_fastpath
, alloc_slowpath
;
37 unsigned long free_fastpath
, free_slowpath
;
38 unsigned long free_frozen
, free_add_partial
, free_remove_partial
;
39 unsigned long alloc_from_partial
, alloc_slab
, free_slab
, alloc_refill
;
40 unsigned long cpuslab_flush
, deactivate_full
, deactivate_empty
;
41 unsigned long deactivate_to_head
, deactivate_to_tail
;
42 unsigned long deactivate_remote_frees
, order_fallback
;
43 unsigned long cmpxchg_double_cpu_fail
, cmpxchg_double_fail
;
44 unsigned long alloc_node_mismatch
, deactivate_bypass
;
45 unsigned long cpu_partial_alloc
, cpu_partial_free
;
47 int numa_partial
[MAX_NODES
];
48 } slabinfo
[MAX_SLABS
];
53 struct slabinfo
*slab
;
54 } aliasinfo
[MAX_ALIASES
];
82 int output_lines
= -1;
98 static void fatal(const char *x
, ...)
103 vfprintf(stderr
, x
, ap
);
108 static void usage(void)
110 printf("slabinfo 4/15/2011. (c) 2007 sgi/(c) 2011 Linux Foundation.\n\n"
111 "slabinfo [-ahnpvtsz] [-d debugopts] [slab-regexp]\n"
112 "-a|--aliases Show aliases\n"
113 "-A|--activity Most active slabs first\n"
114 "-d<options>|--debug=<options> Set/Clear Debug options\n"
115 "-D|--display-active Switch line format to activity\n"
116 "-e|--empty Show empty slabs\n"
117 "-f|--first-alias Show first alias\n"
118 "-h|--help Show usage information\n"
119 "-i|--inverted Inverted list\n"
120 "-l|--slabs Show slabs\n"
121 "-n|--numa Show NUMA information\n"
122 "-o|--ops Show kmem_cache_ops\n"
123 "-s|--shrink Shrink slabs\n"
124 "-r|--report Detailed report on single slabs\n"
125 "-S|--Size Sort by size\n"
126 "-t|--tracking Show alloc/free information\n"
127 "-T|--Totals Show summary information\n"
128 "-v|--validate Validate slabs\n"
129 "-z|--zero Include empty slabs\n"
130 "-1|--1ref Single reference\n"
131 "-N|--lines=K Show the first K slabs\n"
132 "-L|--Loss Sort by loss\n"
133 "-X|--Xtotals Show extended summary information\n"
134 "-B|--Bytes Show size in bytes\n"
135 "\nValid debug options (FZPUT may be combined)\n"
136 "a / A Switch on all debug options (=FZUP)\n"
137 "- Switch off all debug options\n"
138 "f / F Sanity Checks (SLAB_CONSISTENCY_CHECKS)\n"
146 static unsigned long read_obj(const char *name
)
148 FILE *f
= fopen(name
, "r");
153 if (!fgets(buffer
, sizeof(buffer
), f
))
156 if (buffer
[strlen(buffer
)] == '\n')
157 buffer
[strlen(buffer
)] = 0;
159 return strlen(buffer
);
164 * Get the contents of an attribute
166 static unsigned long get_obj(const char *name
)
174 static unsigned long get_obj_and_str(const char *name
, char **x
)
176 unsigned long result
= 0;
181 if (!read_obj(name
)) {
185 result
= strtoul(buffer
, &p
, 10);
193 static void set_obj(struct slabinfo
*s
, const char *name
, int n
)
198 snprintf(x
, 100, "%s/%s", s
->name
, name
);
201 fatal("Cannot write to %s\n", x
);
203 fprintf(f
, "%d\n", n
);
207 static unsigned long read_slab_obj(struct slabinfo
*s
, const char *name
)
213 snprintf(x
, 100, "%s/%s", s
->name
, name
);
219 l
= fread(buffer
, 1, sizeof(buffer
), f
);
228 * Put a size string together
230 static int store_size(char *buffer
, unsigned long value
)
232 unsigned long divisor
= 1;
237 if (value
> 1000000000UL) {
238 divisor
= 100000000UL;
240 } else if (value
> 1000000UL) {
243 } else if (value
> 1000UL) {
250 n
= sprintf(buffer
, "%ld",value
);
257 memmove(buffer
+ n
- 2, buffer
+ n
- 3, 4);
264 static void decode_numa_list(int *numa
, char *t
)
269 memset(numa
, 0, MAX_NODES
* sizeof(int));
276 node
= strtoul(t
, &t
, 10);
279 nr
= strtoul(t
, &t
, 10);
281 if (node
> highest_node
)
289 static void slab_validate(struct slabinfo
*s
)
291 if (strcmp(s
->name
, "*") == 0)
294 set_obj(s
, "validate", 1);
297 static void slab_shrink(struct slabinfo
*s
)
299 if (strcmp(s
->name
, "*") == 0)
302 set_obj(s
, "shrink", 1);
307 static void first_line(void)
310 printf("Name Objects Alloc Free"
311 " %%Fast Fallb O CmpX UL\n");
313 printf("Name Objects Objsize %s "
314 "Slabs/Part/Cpu O/S O %%Fr %%Ef Flg\n",
315 sort_loss
? " Loss" : "Space");
319 * Find the shortest alias of a slab
321 static struct aliasinfo
*find_one_alias(struct slabinfo
*find
)
324 struct aliasinfo
*best
= NULL
;
326 for(a
= aliasinfo
;a
< aliasinfo
+ aliases
; a
++) {
327 if (a
->slab
== find
&&
328 (!best
|| strlen(best
->name
) < strlen(a
->name
))) {
330 if (strncmp(a
->name
,"kmall", 5) == 0)
337 static unsigned long slab_size(struct slabinfo
*s
)
339 return s
->slabs
* (page_size
<< s
->order
);
342 static unsigned long slab_activity(struct slabinfo
*s
)
344 return s
->alloc_fastpath
+ s
->free_fastpath
+
345 s
->alloc_slowpath
+ s
->free_slowpath
;
348 static unsigned long slab_waste(struct slabinfo
*s
)
350 return slab_size(s
) - s
->objects
* s
->object_size
;
353 static void slab_numa(struct slabinfo
*s
, int mode
)
357 if (strcmp(s
->name
, "*") == 0)
361 printf("\n%s: No NUMA information available.\n", s
->name
);
365 if (skip_zero
&& !s
->slabs
)
369 printf("\n%-21s:", mode
? "NUMA nodes" : "Slab");
370 for(node
= 0; node
<= highest_node
; node
++)
371 printf(" %4d", node
);
372 printf("\n----------------------");
373 for(node
= 0; node
<= highest_node
; node
++)
377 printf("%-21s ", mode
? "All slabs" : s
->name
);
378 for(node
= 0; node
<= highest_node
; node
++) {
381 store_size(b
, s
->numa
[node
]);
386 printf("%-21s ", "Partial slabs");
387 for(node
= 0; node
<= highest_node
; node
++) {
390 store_size(b
, s
->numa_partial
[node
]);
398 static void show_tracking(struct slabinfo
*s
)
400 printf("\n%s: Kernel object allocation\n", s
->name
);
401 printf("-----------------------------------------------------------------------\n");
402 if (read_slab_obj(s
, "alloc_calls"))
403 printf("%s", buffer
);
407 printf("\n%s: Kernel object freeing\n", s
->name
);
408 printf("------------------------------------------------------------------------\n");
409 if (read_slab_obj(s
, "free_calls"))
410 printf("%s", buffer
);
416 static void ops(struct slabinfo
*s
)
418 if (strcmp(s
->name
, "*") == 0)
421 if (read_slab_obj(s
, "ops")) {
422 printf("\n%s: kmem_cache operations\n", s
->name
);
423 printf("--------------------------------------------\n");
424 printf("%s", buffer
);
426 printf("\n%s has no kmem_cache operations\n", s
->name
);
429 static const char *onoff(int x
)
436 static void slab_stats(struct slabinfo
*s
)
438 unsigned long total_alloc
;
439 unsigned long total_free
;
445 total_alloc
= s
->alloc_fastpath
+ s
->alloc_slowpath
;
446 total_free
= s
->free_fastpath
+ s
->free_slowpath
;
452 printf("Slab Perf Counter Alloc Free %%Al %%Fr\n");
453 printf("--------------------------------------------------\n");
454 printf("Fastpath %8lu %8lu %3lu %3lu\n",
455 s
->alloc_fastpath
, s
->free_fastpath
,
456 s
->alloc_fastpath
* 100 / total_alloc
,
457 total_free
? s
->free_fastpath
* 100 / total_free
: 0);
458 printf("Slowpath %8lu %8lu %3lu %3lu\n",
459 total_alloc
- s
->alloc_fastpath
, s
->free_slowpath
,
460 (total_alloc
- s
->alloc_fastpath
) * 100 / total_alloc
,
461 total_free
? s
->free_slowpath
* 100 / total_free
: 0);
462 printf("Page Alloc %8lu %8lu %3lu %3lu\n",
463 s
->alloc_slab
, s
->free_slab
,
464 s
->alloc_slab
* 100 / total_alloc
,
465 total_free
? s
->free_slab
* 100 / total_free
: 0);
466 printf("Add partial %8lu %8lu %3lu %3lu\n",
467 s
->deactivate_to_head
+ s
->deactivate_to_tail
,
469 (s
->deactivate_to_head
+ s
->deactivate_to_tail
) * 100 / total_alloc
,
470 total_free
? s
->free_add_partial
* 100 / total_free
: 0);
471 printf("Remove partial %8lu %8lu %3lu %3lu\n",
472 s
->alloc_from_partial
, s
->free_remove_partial
,
473 s
->alloc_from_partial
* 100 / total_alloc
,
474 total_free
? s
->free_remove_partial
* 100 / total_free
: 0);
476 printf("Cpu partial list %8lu %8lu %3lu %3lu\n",
477 s
->cpu_partial_alloc
, s
->cpu_partial_free
,
478 s
->cpu_partial_alloc
* 100 / total_alloc
,
479 total_free
? s
->cpu_partial_free
* 100 / total_free
: 0);
481 printf("RemoteObj/SlabFrozen %8lu %8lu %3lu %3lu\n",
482 s
->deactivate_remote_frees
, s
->free_frozen
,
483 s
->deactivate_remote_frees
* 100 / total_alloc
,
484 total_free
? s
->free_frozen
* 100 / total_free
: 0);
486 printf("Total %8lu %8lu\n\n", total_alloc
, total_free
);
488 if (s
->cpuslab_flush
)
489 printf("Flushes %8lu\n", s
->cpuslab_flush
);
491 total
= s
->deactivate_full
+ s
->deactivate_empty
+
492 s
->deactivate_to_head
+ s
->deactivate_to_tail
+ s
->deactivate_bypass
;
495 printf("\nSlab Deactivation Occurrences %%\n");
496 printf("-------------------------------------------------\n");
497 printf("Slab full %7lu %3lu%%\n",
498 s
->deactivate_full
, (s
->deactivate_full
* 100) / total
);
499 printf("Slab empty %7lu %3lu%%\n",
500 s
->deactivate_empty
, (s
->deactivate_empty
* 100) / total
);
501 printf("Moved to head of partial list %7lu %3lu%%\n",
502 s
->deactivate_to_head
, (s
->deactivate_to_head
* 100) / total
);
503 printf("Moved to tail of partial list %7lu %3lu%%\n",
504 s
->deactivate_to_tail
, (s
->deactivate_to_tail
* 100) / total
);
505 printf("Deactivation bypass %7lu %3lu%%\n",
506 s
->deactivate_bypass
, (s
->deactivate_bypass
* 100) / total
);
507 printf("Refilled from foreign frees %7lu %3lu%%\n",
508 s
->alloc_refill
, (s
->alloc_refill
* 100) / total
);
509 printf("Node mismatch %7lu %3lu%%\n",
510 s
->alloc_node_mismatch
, (s
->alloc_node_mismatch
* 100) / total
);
513 if (s
->cmpxchg_double_fail
|| s
->cmpxchg_double_cpu_fail
) {
514 printf("\nCmpxchg_double Looping\n------------------------\n");
515 printf("Locked Cmpxchg Double redos %lu\nUnlocked Cmpxchg Double redos %lu\n",
516 s
->cmpxchg_double_fail
, s
->cmpxchg_double_cpu_fail
);
520 static void report(struct slabinfo
*s
)
522 if (strcmp(s
->name
, "*") == 0)
525 printf("\nSlabcache: %-15s Aliases: %2d Order : %2d Objects: %lu\n",
526 s
->name
, s
->aliases
, s
->order
, s
->objects
);
527 if (s
->hwcache_align
)
528 printf("** Hardware cacheline aligned\n");
530 printf("** Memory is allocated in a special DMA zone\n");
531 if (s
->destroy_by_rcu
)
532 printf("** Slabs are destroyed via RCU\n");
533 if (s
->reclaim_account
)
534 printf("** Reclaim accounting active\n");
536 printf("\nSizes (bytes) Slabs Debug Memory\n");
537 printf("------------------------------------------------------------------------\n");
538 printf("Object : %7d Total : %7ld Sanity Checks : %s Total: %7ld\n",
539 s
->object_size
, s
->slabs
, onoff(s
->sanity_checks
),
540 s
->slabs
* (page_size
<< s
->order
));
541 printf("SlabObj: %7d Full : %7ld Redzoning : %s Used : %7ld\n",
542 s
->slab_size
, s
->slabs
- s
->partial
- s
->cpu_slabs
,
543 onoff(s
->red_zone
), s
->objects
* s
->object_size
);
544 printf("SlabSiz: %7d Partial: %7ld Poisoning : %s Loss : %7ld\n",
545 page_size
<< s
->order
, s
->partial
, onoff(s
->poison
),
546 s
->slabs
* (page_size
<< s
->order
) - s
->objects
* s
->object_size
);
547 printf("Loss : %7d CpuSlab: %7d Tracking : %s Lalig: %7ld\n",
548 s
->slab_size
- s
->object_size
, s
->cpu_slabs
, onoff(s
->store_user
),
549 (s
->slab_size
- s
->object_size
) * s
->objects
);
550 printf("Align : %7d Objects: %7d Tracing : %s Lpadd: %7ld\n",
551 s
->align
, s
->objs_per_slab
, onoff(s
->trace
),
552 ((page_size
<< s
->order
) - s
->objs_per_slab
* s
->slab_size
) *
561 static void slabcache(struct slabinfo
*s
)
568 if (strcmp(s
->name
, "*") == 0)
571 if (actual_slabs
== 1) {
576 if (skip_zero
&& !show_empty
&& !s
->slabs
)
579 if (show_empty
&& s
->slabs
)
583 store_size(size_str
, slab_size(s
));
585 store_size(size_str
, slab_waste(s
));
586 snprintf(dist_str
, 40, "%lu/%lu/%d", s
->slabs
- s
->cpu_slabs
,
587 s
->partial
, s
->cpu_slabs
);
596 if (s
->hwcache_align
)
600 if (s
->reclaim_account
)
604 if (s
->sanity_checks
)
613 unsigned long total_alloc
;
614 unsigned long total_free
;
616 total_alloc
= s
->alloc_fastpath
+ s
->alloc_slowpath
;
617 total_free
= s
->free_fastpath
+ s
->free_slowpath
;
619 printf("%-21s %8ld %10ld %10ld %3ld %3ld %5ld %1d %4ld %4ld\n",
621 total_alloc
, total_free
,
622 total_alloc
? (s
->alloc_fastpath
* 100 / total_alloc
) : 0,
623 total_free
? (s
->free_fastpath
* 100 / total_free
) : 0,
624 s
->order_fallback
, s
->order
, s
->cmpxchg_double_fail
,
625 s
->cmpxchg_double_cpu_fail
);
627 printf("%-21s %8ld %7d %15s %14s %4d %1d %3ld %3ld %s\n",
628 s
->name
, s
->objects
, s
->object_size
, size_str
, dist_str
,
629 s
->objs_per_slab
, s
->order
,
630 s
->slabs
? (s
->partial
* 100) / s
->slabs
: 100,
631 s
->slabs
? (s
->objects
* s
->object_size
* 100) /
632 (s
->slabs
* (page_size
<< s
->order
)) : 100,
638 * Analyze debug options. Return false if something is amiss.
640 static int debug_opt_scan(char *opt
)
642 if (!opt
|| !opt
[0] || strcmp(opt
, "-") == 0)
645 if (strcasecmp(opt
, "a") == 0) {
689 static int slab_empty(struct slabinfo
*s
)
695 * We may still have slabs even if there are no objects. Shrinking will
699 set_obj(s
, "shrink", 1);
704 static void slab_debug(struct slabinfo
*s
)
706 if (strcmp(s
->name
, "*") == 0)
709 if (sanity
&& !s
->sanity_checks
) {
710 set_obj(s
, "sanity", 1);
712 if (!sanity
&& s
->sanity_checks
) {
714 set_obj(s
, "sanity", 0);
716 fprintf(stderr
, "%s not empty cannot disable sanity checks\n", s
->name
);
718 if (redzone
&& !s
->red_zone
) {
720 set_obj(s
, "red_zone", 1);
722 fprintf(stderr
, "%s not empty cannot enable redzoning\n", s
->name
);
724 if (!redzone
&& s
->red_zone
) {
726 set_obj(s
, "red_zone", 0);
728 fprintf(stderr
, "%s not empty cannot disable redzoning\n", s
->name
);
730 if (poison
&& !s
->poison
) {
732 set_obj(s
, "poison", 1);
734 fprintf(stderr
, "%s not empty cannot enable poisoning\n", s
->name
);
736 if (!poison
&& s
->poison
) {
738 set_obj(s
, "poison", 0);
740 fprintf(stderr
, "%s not empty cannot disable poisoning\n", s
->name
);
742 if (tracking
&& !s
->store_user
) {
744 set_obj(s
, "store_user", 1);
746 fprintf(stderr
, "%s not empty cannot enable tracking\n", s
->name
);
748 if (!tracking
&& s
->store_user
) {
750 set_obj(s
, "store_user", 0);
752 fprintf(stderr
, "%s not empty cannot disable tracking\n", s
->name
);
754 if (tracing
&& !s
->trace
) {
756 set_obj(s
, "trace", 1);
758 fprintf(stderr
, "%s can only enable trace for one slab at a time\n", s
->name
);
760 if (!tracing
&& s
->trace
)
761 set_obj(s
, "trace", 1);
764 static void totals(void)
769 char b1
[20], b2
[20], b3
[20], b4
[20];
770 unsigned long long max
= 1ULL << 63;
773 unsigned long long min_objsize
= max
, max_objsize
= 0, avg_objsize
;
775 /* Number of partial slabs in a slabcache */
776 unsigned long long min_partial
= max
, max_partial
= 0,
777 avg_partial
, total_partial
= 0;
779 /* Number of slabs in a slab cache */
780 unsigned long long min_slabs
= max
, max_slabs
= 0,
781 avg_slabs
, total_slabs
= 0;
783 /* Size of the whole slab */
784 unsigned long long min_size
= max
, max_size
= 0,
785 avg_size
, total_size
= 0;
787 /* Bytes used for object storage in a slab */
788 unsigned long long min_used
= max
, max_used
= 0,
789 avg_used
, total_used
= 0;
791 /* Waste: Bytes used for alignment and padding */
792 unsigned long long min_waste
= max
, max_waste
= 0,
793 avg_waste
, total_waste
= 0;
794 /* Number of objects in a slab */
795 unsigned long long min_objects
= max
, max_objects
= 0,
796 avg_objects
, total_objects
= 0;
797 /* Waste per object */
798 unsigned long long min_objwaste
= max
,
799 max_objwaste
= 0, avg_objwaste
,
802 /* Memory per object */
803 unsigned long long min_memobj
= max
,
804 max_memobj
= 0, avg_memobj
,
807 /* Percentage of partial slabs per slab */
808 unsigned long min_ppart
= 100, max_ppart
= 0,
809 avg_ppart
, total_ppart
= 0;
811 /* Number of objects in partial slabs */
812 unsigned long min_partobj
= max
, max_partobj
= 0,
813 avg_partobj
, total_partobj
= 0;
815 /* Percentage of partial objects of all objects in a slab */
816 unsigned long min_ppartobj
= 100, max_ppartobj
= 0,
817 avg_ppartobj
, total_ppartobj
= 0;
820 for (s
= slabinfo
; s
< slabinfo
+ slabs
; s
++) {
821 unsigned long long size
;
823 unsigned long long wasted
;
824 unsigned long long objwaste
;
825 unsigned long percentage_partial_slabs
;
826 unsigned long percentage_partial_objs
;
828 if (!s
->slabs
|| !s
->objects
)
834 used
= s
->objects
* s
->object_size
;
835 wasted
= size
- used
;
836 objwaste
= s
->slab_size
- s
->object_size
;
838 percentage_partial_slabs
= s
->partial
* 100 / s
->slabs
;
839 if (percentage_partial_slabs
> 100)
840 percentage_partial_slabs
= 100;
842 percentage_partial_objs
= s
->objects_partial
* 100
845 if (percentage_partial_objs
> 100)
846 percentage_partial_objs
= 100;
848 if (s
->object_size
< min_objsize
)
849 min_objsize
= s
->object_size
;
850 if (s
->partial
< min_partial
)
851 min_partial
= s
->partial
;
852 if (s
->slabs
< min_slabs
)
853 min_slabs
= s
->slabs
;
856 if (wasted
< min_waste
)
858 if (objwaste
< min_objwaste
)
859 min_objwaste
= objwaste
;
860 if (s
->objects
< min_objects
)
861 min_objects
= s
->objects
;
864 if (s
->objects_partial
< min_partobj
)
865 min_partobj
= s
->objects_partial
;
866 if (percentage_partial_slabs
< min_ppart
)
867 min_ppart
= percentage_partial_slabs
;
868 if (percentage_partial_objs
< min_ppartobj
)
869 min_ppartobj
= percentage_partial_objs
;
870 if (s
->slab_size
< min_memobj
)
871 min_memobj
= s
->slab_size
;
873 if (s
->object_size
> max_objsize
)
874 max_objsize
= s
->object_size
;
875 if (s
->partial
> max_partial
)
876 max_partial
= s
->partial
;
877 if (s
->slabs
> max_slabs
)
878 max_slabs
= s
->slabs
;
881 if (wasted
> max_waste
)
883 if (objwaste
> max_objwaste
)
884 max_objwaste
= objwaste
;
885 if (s
->objects
> max_objects
)
886 max_objects
= s
->objects
;
889 if (s
->objects_partial
> max_partobj
)
890 max_partobj
= s
->objects_partial
;
891 if (percentage_partial_slabs
> max_ppart
)
892 max_ppart
= percentage_partial_slabs
;
893 if (percentage_partial_objs
> max_ppartobj
)
894 max_ppartobj
= percentage_partial_objs
;
895 if (s
->slab_size
> max_memobj
)
896 max_memobj
= s
->slab_size
;
898 total_partial
+= s
->partial
;
899 total_slabs
+= s
->slabs
;
901 total_waste
+= wasted
;
903 total_objects
+= s
->objects
;
905 total_partobj
+= s
->objects_partial
;
906 total_ppart
+= percentage_partial_slabs
;
907 total_ppartobj
+= percentage_partial_objs
;
909 total_objwaste
+= s
->objects
* objwaste
;
910 total_objsize
+= s
->objects
* s
->slab_size
;
913 if (!total_objects
) {
914 printf("No objects\n");
918 printf("No slabs\n");
922 /* Per slab averages */
923 avg_partial
= total_partial
/ used_slabs
;
924 avg_slabs
= total_slabs
/ used_slabs
;
925 avg_size
= total_size
/ used_slabs
;
926 avg_waste
= total_waste
/ used_slabs
;
928 avg_objects
= total_objects
/ used_slabs
;
929 avg_used
= total_used
/ used_slabs
;
930 avg_partobj
= total_partobj
/ used_slabs
;
931 avg_ppart
= total_ppart
/ used_slabs
;
932 avg_ppartobj
= total_ppartobj
/ used_slabs
;
934 /* Per object object sizes */
935 avg_objsize
= total_used
/ total_objects
;
936 avg_objwaste
= total_objwaste
/ total_objects
;
937 avg_partobj
= total_partobj
* 100 / total_objects
;
938 avg_memobj
= total_objsize
/ total_objects
;
940 printf("Slabcache Totals\n");
941 printf("----------------\n");
942 printf("Slabcaches : %15d Aliases : %11d->%-3d Active: %3d\n",
943 slabs
, aliases
, alias_targets
, used_slabs
);
945 store_size(b1
, total_size
);store_size(b2
, total_waste
);
946 store_size(b3
, total_waste
* 100 / total_used
);
947 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1
, b2
, b3
);
949 store_size(b1
, total_objects
);store_size(b2
, total_partobj
);
950 store_size(b3
, total_partobj
* 100 / total_objects
);
951 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1
, b2
, b3
);
954 printf("Per Cache Average "
956 printf("---------------------------------------"
957 "-------------------------------------\n");
959 store_size(b1
, avg_objects
);store_size(b2
, min_objects
);
960 store_size(b3
, max_objects
);store_size(b4
, total_objects
);
961 printf("#Objects %15s %15s %15s %15s\n",
964 store_size(b1
, avg_slabs
);store_size(b2
, min_slabs
);
965 store_size(b3
, max_slabs
);store_size(b4
, total_slabs
);
966 printf("#Slabs %15s %15s %15s %15s\n",
969 store_size(b1
, avg_partial
);store_size(b2
, min_partial
);
970 store_size(b3
, max_partial
);store_size(b4
, total_partial
);
971 printf("#PartSlab %15s %15s %15s %15s\n",
973 store_size(b1
, avg_ppart
);store_size(b2
, min_ppart
);
974 store_size(b3
, max_ppart
);
975 store_size(b4
, total_partial
* 100 / total_slabs
);
976 printf("%%PartSlab%15s%% %15s%% %15s%% %15s%%\n",
979 store_size(b1
, avg_partobj
);store_size(b2
, min_partobj
);
980 store_size(b3
, max_partobj
);
981 store_size(b4
, total_partobj
);
982 printf("PartObjs %15s %15s %15s %15s\n",
985 store_size(b1
, avg_ppartobj
);store_size(b2
, min_ppartobj
);
986 store_size(b3
, max_ppartobj
);
987 store_size(b4
, total_partobj
* 100 / total_objects
);
988 printf("%% PartObj%15s%% %15s%% %15s%% %15s%%\n",
991 store_size(b1
, avg_size
);store_size(b2
, min_size
);
992 store_size(b3
, max_size
);store_size(b4
, total_size
);
993 printf("Memory %15s %15s %15s %15s\n",
996 store_size(b1
, avg_used
);store_size(b2
, min_used
);
997 store_size(b3
, max_used
);store_size(b4
, total_used
);
998 printf("Used %15s %15s %15s %15s\n",
1001 store_size(b1
, avg_waste
);store_size(b2
, min_waste
);
1002 store_size(b3
, max_waste
);store_size(b4
, total_waste
);
1003 printf("Loss %15s %15s %15s %15s\n",
1007 printf("Per Object Average "
1009 printf("---------------------------------------"
1010 "--------------------\n");
1012 store_size(b1
, avg_memobj
);store_size(b2
, min_memobj
);
1013 store_size(b3
, max_memobj
);
1014 printf("Memory %15s %15s %15s\n",
1016 store_size(b1
, avg_objsize
);store_size(b2
, min_objsize
);
1017 store_size(b3
, max_objsize
);
1018 printf("User %15s %15s %15s\n",
1021 store_size(b1
, avg_objwaste
);store_size(b2
, min_objwaste
);
1022 store_size(b3
, max_objwaste
);
1023 printf("Loss %15s %15s %15s\n",
1027 static void sort_slabs(void)
1029 struct slabinfo
*s1
,*s2
;
1031 for (s1
= slabinfo
; s1
< slabinfo
+ slabs
; s1
++) {
1032 for (s2
= s1
+ 1; s2
< slabinfo
+ slabs
; s2
++) {
1036 result
= slab_size(s1
) < slab_size(s2
);
1037 else if (sort_active
)
1038 result
= slab_activity(s1
) < slab_activity(s2
);
1040 result
= slab_waste(s1
) < slab_waste(s2
);
1042 result
= strcasecmp(s1
->name
, s2
->name
);
1050 memcpy(&t
, s1
, sizeof(struct slabinfo
));
1051 memcpy(s1
, s2
, sizeof(struct slabinfo
));
1052 memcpy(s2
, &t
, sizeof(struct slabinfo
));
1058 static void sort_aliases(void)
1060 struct aliasinfo
*a1
,*a2
;
1062 for (a1
= aliasinfo
; a1
< aliasinfo
+ aliases
; a1
++) {
1063 for (a2
= a1
+ 1; a2
< aliasinfo
+ aliases
; a2
++) {
1068 if (show_alias
&& !show_inverted
) {
1072 if (strcasecmp(n1
, n2
) > 0) {
1075 memcpy(&t
, a1
, sizeof(struct aliasinfo
));
1076 memcpy(a1
, a2
, sizeof(struct aliasinfo
));
1077 memcpy(a2
, &t
, sizeof(struct aliasinfo
));
1083 static void link_slabs(void)
1085 struct aliasinfo
*a
;
1088 for (a
= aliasinfo
; a
< aliasinfo
+ aliases
; a
++) {
1090 for (s
= slabinfo
; s
< slabinfo
+ slabs
; s
++)
1091 if (strcmp(a
->ref
, s
->name
) == 0) {
1096 if (s
== slabinfo
+ slabs
)
1097 fatal("Unresolved alias %s\n", a
->ref
);
1101 static void alias(void)
1103 struct aliasinfo
*a
;
1104 char *active
= NULL
;
1109 for(a
= aliasinfo
; a
< aliasinfo
+ aliases
; a
++) {
1111 if (!show_single_ref
&& a
->slab
->refs
== 1)
1114 if (!show_inverted
) {
1116 if (strcmp(a
->slab
->name
, active
) == 0) {
1117 printf(" %s", a
->name
);
1121 printf("\n%-12s <- %s", a
->slab
->name
, a
->name
);
1122 active
= a
->slab
->name
;
1125 printf("%-15s -> %s\n", a
->name
, a
->slab
->name
);
1132 static void rename_slabs(void)
1135 struct aliasinfo
*a
;
1137 for (s
= slabinfo
; s
< slabinfo
+ slabs
; s
++) {
1138 if (*s
->name
!= ':')
1141 if (s
->refs
> 1 && !show_first_alias
)
1144 a
= find_one_alias(s
);
1155 static int slab_mismatch(char *slab
)
1157 return regexec(&pattern
, slab
, 0, NULL
, 0);
1160 static void read_slab_dir(void)
1164 struct slabinfo
*slab
= slabinfo
;
1165 struct aliasinfo
*alias
= aliasinfo
;
1170 if (chdir("/sys/kernel/slab") && chdir("/sys/slab"))
1171 fatal("SYSFS support for SLUB not active\n");
1174 while ((de
= readdir(dir
))) {
1175 if (de
->d_name
[0] == '.' ||
1176 (de
->d_name
[0] != ':' && slab_mismatch(de
->d_name
)))
1178 switch (de
->d_type
) {
1180 alias
->name
= strdup(de
->d_name
);
1181 count
= readlink(de
->d_name
, buffer
, sizeof(buffer
)-1);
1184 fatal("Cannot read symlink %s\n", de
->d_name
);
1188 while (p
> buffer
&& p
[-1] != '/')
1190 alias
->ref
= strdup(p
);
1194 if (chdir(de
->d_name
))
1195 fatal("Unable to access slab %s\n", slab
->name
);
1196 slab
->name
= strdup(de
->d_name
);
1199 slab
->aliases
= get_obj("aliases");
1200 slab
->align
= get_obj("align");
1201 slab
->cache_dma
= get_obj("cache_dma");
1202 slab
->cpu_slabs
= get_obj("cpu_slabs");
1203 slab
->destroy_by_rcu
= get_obj("destroy_by_rcu");
1204 slab
->hwcache_align
= get_obj("hwcache_align");
1205 slab
->object_size
= get_obj("object_size");
1206 slab
->objects
= get_obj("objects");
1207 slab
->objects_partial
= get_obj("objects_partial");
1208 slab
->objects_total
= get_obj("objects_total");
1209 slab
->objs_per_slab
= get_obj("objs_per_slab");
1210 slab
->order
= get_obj("order");
1211 slab
->partial
= get_obj("partial");
1212 slab
->partial
= get_obj_and_str("partial", &t
);
1213 decode_numa_list(slab
->numa_partial
, t
);
1215 slab
->poison
= get_obj("poison");
1216 slab
->reclaim_account
= get_obj("reclaim_account");
1217 slab
->red_zone
= get_obj("red_zone");
1218 slab
->sanity_checks
= get_obj("sanity_checks");
1219 slab
->slab_size
= get_obj("slab_size");
1220 slab
->slabs
= get_obj_and_str("slabs", &t
);
1221 decode_numa_list(slab
->numa
, t
);
1223 slab
->store_user
= get_obj("store_user");
1224 slab
->trace
= get_obj("trace");
1225 slab
->alloc_fastpath
= get_obj("alloc_fastpath");
1226 slab
->alloc_slowpath
= get_obj("alloc_slowpath");
1227 slab
->free_fastpath
= get_obj("free_fastpath");
1228 slab
->free_slowpath
= get_obj("free_slowpath");
1229 slab
->free_frozen
= get_obj("free_frozen");
1230 slab
->free_add_partial
= get_obj("free_add_partial");
1231 slab
->free_remove_partial
= get_obj("free_remove_partial");
1232 slab
->alloc_from_partial
= get_obj("alloc_from_partial");
1233 slab
->alloc_slab
= get_obj("alloc_slab");
1234 slab
->alloc_refill
= get_obj("alloc_refill");
1235 slab
->free_slab
= get_obj("free_slab");
1236 slab
->cpuslab_flush
= get_obj("cpuslab_flush");
1237 slab
->deactivate_full
= get_obj("deactivate_full");
1238 slab
->deactivate_empty
= get_obj("deactivate_empty");
1239 slab
->deactivate_to_head
= get_obj("deactivate_to_head");
1240 slab
->deactivate_to_tail
= get_obj("deactivate_to_tail");
1241 slab
->deactivate_remote_frees
= get_obj("deactivate_remote_frees");
1242 slab
->order_fallback
= get_obj("order_fallback");
1243 slab
->cmpxchg_double_cpu_fail
= get_obj("cmpxchg_double_cpu_fail");
1244 slab
->cmpxchg_double_fail
= get_obj("cmpxchg_double_fail");
1245 slab
->cpu_partial_alloc
= get_obj("cpu_partial_alloc");
1246 slab
->cpu_partial_free
= get_obj("cpu_partial_free");
1247 slab
->alloc_node_mismatch
= get_obj("alloc_node_mismatch");
1248 slab
->deactivate_bypass
= get_obj("deactivate_bypass");
1250 if (slab
->name
[0] == ':')
1255 fatal("Unknown file type %lx\n", de
->d_type
);
1259 slabs
= slab
- slabinfo
;
1260 actual_slabs
= slabs
;
1261 aliases
= alias
- aliasinfo
;
1262 if (slabs
> MAX_SLABS
)
1263 fatal("Too many slabs\n");
1264 if (aliases
> MAX_ALIASES
)
1265 fatal("Too many aliases\n");
1268 static void output_slabs(void)
1270 struct slabinfo
*slab
;
1271 int lines
= output_lines
;
1273 for (slab
= slabinfo
; (slab
< slabinfo
+ slabs
) &&
1274 lines
!= 0; slab
++) {
1284 else if (show_track
)
1285 show_tracking(slab
);
1287 slab_validate(slab
);
1296 else if (show_report
)
1301 static void xtotals(void)
1308 printf("\nSlabs sorted by size\n");
1309 printf("--------------------\n");
1315 printf("\nSlabs sorted by loss\n");
1316 printf("--------------------\n");
1325 struct option opts
[] = {
1326 { "aliases", no_argument
, NULL
, 'a' },
1327 { "activity", no_argument
, NULL
, 'A' },
1328 { "debug", optional_argument
, NULL
, 'd' },
1329 { "display-activity", no_argument
, NULL
, 'D' },
1330 { "empty", no_argument
, NULL
, 'e' },
1331 { "first-alias", no_argument
, NULL
, 'f' },
1332 { "help", no_argument
, NULL
, 'h' },
1333 { "inverted", no_argument
, NULL
, 'i'},
1334 { "slabs", no_argument
, NULL
, 'l' },
1335 { "numa", no_argument
, NULL
, 'n' },
1336 { "ops", no_argument
, NULL
, 'o' },
1337 { "shrink", no_argument
, NULL
, 's' },
1338 { "report", no_argument
, NULL
, 'r' },
1339 { "Size", no_argument
, NULL
, 'S'},
1340 { "tracking", no_argument
, NULL
, 't'},
1341 { "Totals", no_argument
, NULL
, 'T'},
1342 { "validate", no_argument
, NULL
, 'v' },
1343 { "zero", no_argument
, NULL
, 'z' },
1344 { "1ref", no_argument
, NULL
, '1'},
1345 { "lines", required_argument
, NULL
, 'N'},
1346 { "Loss", no_argument
, NULL
, 'L'},
1347 { "Xtotals", no_argument
, NULL
, 'X'},
1348 { "Bytes", no_argument
, NULL
, 'B'},
1349 { NULL
, 0, NULL
, 0 }
1352 int main(int argc
, char *argv
[])
1356 char *pattern_source
;
1358 page_size
= getpagesize();
1360 while ((c
= getopt_long(argc
, argv
, "aAd::Defhil1noprstvzTSN:LXB",
1364 show_single_ref
= 1;
1374 if (!debug_opt_scan(optarg
))
1375 fatal("Invalid debug option '%s'\n", optarg
);
1384 show_first_alias
= 1;
1424 output_lines
= atoi(optarg
);
1425 if (output_lines
< 1)
1433 if (output_lines
== -1)
1435 extended_totals
= 1;
1442 fatal("%s: Invalid option '%c'\n", argv
[0], optopt
);
1446 if (!show_slab
&& !show_alias
&& !show_track
&& !show_report
1447 && !validate
&& !shrink
&& !set_debug
&& !show_ops
)
1451 pattern_source
= argv
[optind
];
1453 pattern_source
= ".*";
1455 err
= regcomp(&pattern
, pattern_source
, REG_ICASE
|REG_NOSUB
);
1457 fatal("%s: Invalid pattern '%s' code %d\n",
1458 argv
[0], pattern_source
, err
);
1462 } else if (extended_totals
) {
1464 } else if (show_totals
) {