Lines Matching refs:m
934 static void print_slabinfo_header(struct seq_file *m) in print_slabinfo_header() argument
941 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n"); in print_slabinfo_header()
943 seq_puts(m, "slabinfo - version: 2.1\n"); in print_slabinfo_header()
945 seq_puts(m, "# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab>"); in print_slabinfo_header()
946 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>"); in print_slabinfo_header()
947 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>"); in print_slabinfo_header()
949 …seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> <error> <maxfreeable> <nodeallo… in print_slabinfo_header()
950 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>"); in print_slabinfo_header()
952 seq_putc(m, '\n'); in print_slabinfo_header()
955 void *slab_start(struct seq_file *m, loff_t *pos) in slab_start() argument
961 void *slab_next(struct seq_file *m, void *p, loff_t *pos) in slab_next() argument
966 void slab_stop(struct seq_file *m, void *p) in slab_stop() argument
971 static void cache_show(struct kmem_cache *s, struct seq_file *m) in cache_show() argument
978 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", in cache_show()
982 seq_printf(m, " : tunables %4u %4u %4u", in cache_show()
984 seq_printf(m, " : slabdata %6lu %6lu %6lu", in cache_show()
986 slabinfo_show_stats(m, s); in cache_show()
987 seq_putc(m, '\n'); in cache_show()
990 static int slab_show(struct seq_file *m, void *p) in slab_show() argument
995 print_slabinfo_header(m); in slab_show()
996 cache_show(s, m); in slab_show()
1035 int memcg_slab_show(struct seq_file *m, void *p) in memcg_slab_show() argument