From: mel@skynet.ie (Mel Gorman)
To: Christoph Lameter <clameter@sgi.com>
Cc: akpm@linux-foundatin.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org
Subject: Re: [patch 06/23] SLUB: Extend slabinfo to support -D and -C options
Date: Thu, 8 Nov 2007 15:00:07 +0000 [thread overview]
Message-ID: <20071108150007.GC2591@skynet.ie> (raw)
In-Reply-To: <20071107011227.849762930@sgi.com>
On (06/11/07 17:11), Christoph Lameter didst pronounce:
> -D lists caches that support defragmentation
>
> -C lists caches that use a ctor.
>
> Change field names for defrag_ratio and remote_node_defrag_ratio.
>
> Add determination of the allocation ratio for a slab. The allocation ratio
> is the percentage of available slots for objects in use.
>
Total aside, is there any plan to merge slabinfo or something similar in
procps? Alternatively, is having a compatability /proc/slabinfo in the works
anywhere? Latest git doesn't appear to have anything on it but I could easily
have missed it in -mm or somewhere else.
> Reviewed-by: Rik van Riel <riel@redhat.com>
> Signed-off-by: Christoph Lameter <clameter@sgi.com>
> ---
> Documentation/vm/slabinfo.c | 52 +++++++++++++++++++++++++++++++++++++-------
> 1 file changed, 44 insertions(+), 8 deletions(-)
>
> Index: linux-2.6.23-mm1/Documentation/vm/slabinfo.c
> ===================================================================
> --- linux-2.6.23-mm1.orig/Documentation/vm/slabinfo.c 2007-10-12 16:25:54.000000000 -0700
> +++ linux-2.6.23-mm1/Documentation/vm/slabinfo.c 2007-10-12 17:58:14.000000000 -0700
> @@ -31,6 +31,8 @@ struct slabinfo {
> int hwcache_align, object_size, objs_per_slab;
> int sanity_checks, slab_size, store_user, trace;
> int order, poison, reclaim_account, red_zone;
> + int defrag, ctor;
> + int defrag_ratio, remote_node_defrag_ratio;
> unsigned long partial, objects, slabs;
> int numa[MAX_NODES];
> int numa_partial[MAX_NODES];
> @@ -57,6 +59,8 @@ int show_slab = 0;
> int skip_zero = 1;
> int show_numa = 0;
> int show_track = 0;
> +int show_defrag = 0;
> +int show_ctor = 0;
> int show_first_alias = 0;
> int validate = 0;
> int shrink = 0;
> @@ -91,18 +95,20 @@ void fatal(const char *x, ...)
> void usage(void)
> {
> printf("slabinfo 5/7/2007. (c) 2007 sgi. clameter@sgi.com\n\n"
> - "slabinfo [-ahnpvtsz] [-d debugopts] [slab-regexp]\n"
> + "slabinfo [-aCDefhilnosSrtTvz1] [-d debugopts] [slab-regexp]\n"
> "-a|--aliases Show aliases\n"
> + "-C|--ctor Show slabs with ctors\n"
> "-d<options>|--debug=<options> Set/Clear Debug options\n"
> - "-e|--empty Show empty slabs\n"
> + "-D|--defrag Show defragmentable caches\n"
> + "-e|--empty Show empty slabs\n"
> "-f|--first-alias Show first alias\n"
> "-h|--help Show usage information\n"
> "-i|--inverted Inverted list\n"
> "-l|--slabs Show slabs\n"
> "-n|--numa Show NUMA information\n"
> - "-o|--ops Show kmem_cache_ops\n"
> + "-o|--ops Show kmem_cache_ops\n"
> "-s|--shrink Shrink slabs\n"
> - "-r|--report Detailed report on single slabs\n"
> + "-r|--report Detailed report on single slabs\n"
> "-S|--Size Sort by size\n"
> "-t|--tracking Show alloc/free information\n"
> "-T|--Totals Show summary information\n"
> @@ -282,7 +288,7 @@ int line = 0;
> void first_line(void)
> {
> printf("Name Objects Objsize Space "
> - "Slabs/Part/Cpu O/S O %%Fr %%Ef Flg\n");
> + "Slabs/Part/Cpu O/S O %%Ra %%Ef Flg\n");
> }
>
> /*
> @@ -325,7 +331,7 @@ void slab_numa(struct slabinfo *s, int m
> return;
>
> if (!line) {
> - printf("\n%-21s:", mode ? "NUMA nodes" : "Slab");
> + printf("\n%-21s: Rto ", mode ? "NUMA nodes" : "Slab");
> for(node = 0; node <= highest_node; node++)
> printf(" %4d", node);
> printf("\n----------------------");
> @@ -334,6 +340,7 @@ void slab_numa(struct slabinfo *s, int m
> printf("\n");
> }
> printf("%-21s ", mode ? "All slabs" : s->name);
> + printf("%3d ", s->remote_node_defrag_ratio);
> for(node = 0; node <= highest_node; node++) {
> char b[20];
>
> @@ -407,6 +414,8 @@ void report(struct slabinfo *s)
> printf("** Slabs are destroyed via RCU\n");
> if (s->reclaim_account)
> printf("** Reclaim accounting active\n");
> + if (s->defrag)
> + printf("** Defragmentation at %d%%\n", s->defrag_ratio);
>
> printf("\nSizes (bytes) Slabs Debug Memory\n");
> printf("------------------------------------------------------------------------\n");
> @@ -453,6 +462,12 @@ void slabcache(struct slabinfo *s)
> if (show_empty && s->slabs)
> return;
>
> + if (show_defrag && !s->defrag)
> + return;
> +
> + if (show_ctor && !s->ctor)
> + return;
> +
> store_size(size_str, slab_size(s));
> snprintf(dist_str, 40, "%lu/%lu/%d", s->slabs, s->partial, s->cpu_slabs);
>
> @@ -463,6 +478,10 @@ void slabcache(struct slabinfo *s)
> *p++ = '*';
> if (s->cache_dma)
> *p++ = 'd';
> + if (s->defrag)
> + *p++ = 'D';
> + if (s->ctor)
> + *p++ = 'C';
> if (s->hwcache_align)
> *p++ = 'A';
> if (s->poison)
> @@ -482,7 +501,7 @@ void slabcache(struct slabinfo *s)
> printf("%-21s %8ld %7d %8s %14s %4d %1d %3ld %3ld %s\n",
> s->name, s->objects, s->object_size, size_str, dist_str,
> s->objs_per_slab, s->order,
> - s->slabs ? (s->partial * 100) / s->slabs : 100,
> + s->slabs ? (s->objects * 100) / (s->slabs * s->objs_per_slab) : 100,
> s->slabs ? (s->objects * s->object_size * 100) /
> (s->slabs * (page_size << s->order)) : 100,
> flags);
> @@ -1074,7 +1093,16 @@ void read_slab_dir(void)
> free(t);
> slab->store_user = get_obj("store_user");
> slab->trace = get_obj("trace");
> + slab->defrag_ratio = get_obj("defrag_ratio");
> + slab->remote_node_defrag_ratio =
> + get_obj("remote_node_defrag_ratio");
> chdir("..");
> + if (read_slab_obj(slab, "ops")) {
> + if (strstr(buffer, "ctor :"))
> + slab->ctor = 1;
> + if (strstr(buffer, "kick :"))
> + slab->defrag = 1;
> + }
> if (slab->name[0] == ':')
> alias_targets++;
> slab++;
> @@ -1124,7 +1152,9 @@ void output_slabs(void)
>
> struct option opts[] = {
> { "aliases", 0, NULL, 'a' },
> + { "ctor", 0, NULL, 'C' },
> { "debug", 2, NULL, 'd' },
> + { "defrag", 0, NULL, 'D' },
> { "empty", 0, NULL, 'e' },
> { "first-alias", 0, NULL, 'f' },
> { "help", 0, NULL, 'h' },
> @@ -1149,7 +1179,7 @@ int main(int argc, char *argv[])
>
> page_size = getpagesize();
>
> - while ((c = getopt_long(argc, argv, "ad::efhil1noprstvzTS",
> + while ((c = getopt_long(argc, argv, "ad::efhil1noprstvzCDTS",
> opts, NULL)) != -1)
> switch (c) {
> case '1':
> @@ -1199,6 +1229,12 @@ int main(int argc, char *argv[])
> case 'z':
> skip_zero = 0;
> break;
> + case 'C':
> + show_ctor = 1;
> + break;
> + case 'D':
> + show_defrag = 1;
> + break;
> case 'T':
> show_totals = 1;
> break;
>
> --
>
--
--
Mel Gorman
Part-time Phd Student Linux Technology Center
University of Limerick IBM Dublin Software Lab
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2007-11-08 15:00 UTC|newest]
Thread overview: 77+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-07 1:11 [patch 00/23] Slab defragmentation V6 Christoph Lameter
2007-11-07 1:11 ` [patch 01/23] SLUB: Move count_partial() Christoph Lameter
2007-11-07 1:11 ` [patch 02/23] SLUB: Rename NUMA defrag_ratio to remote_node_defrag_ratio Christoph Lameter
2007-11-08 14:50 ` Mel Gorman
2007-11-08 17:25 ` Matt Mackall
2007-11-08 19:16 ` Christoph Lameter
2007-11-08 19:47 ` Matt Mackall
2007-11-08 20:01 ` Christoph Lameter
2007-11-08 21:03 ` Matt Mackall
2007-11-08 21:28 ` Christoph Lameter
2007-11-08 23:08 ` Matt Mackall
2007-11-08 18:56 ` Christoph Lameter
2007-11-08 20:10 ` Mel Gorman
2007-11-07 1:11 ` [patch 03/23] bufferhead: Revert constructor removal Christoph Lameter
2007-11-07 1:11 ` [patch 04/23] dentries: Extract common code to remove dentry from lru Christoph Lameter
2007-11-07 8:50 ` Johannes Weiner
2007-11-07 9:43 ` Jörn Engel
2007-11-07 18:55 ` Christoph Lameter
2007-11-07 18:54 ` Jörn Engel
2007-11-07 19:00 ` Christoph Lameter
2007-11-07 18:28 ` Christoph Lameter
2007-11-07 1:11 ` [patch 05/23] VM: Allow get_page_unless_zero on compound pages Christoph Lameter
2007-11-07 1:11 ` [patch 06/23] SLUB: Extend slabinfo to support -D and -C options Christoph Lameter
2007-11-08 15:00 ` Mel Gorman [this message]
2007-11-07 1:11 ` [patch 07/23] SLUB: Add defrag_ratio field and sysfs support Christoph Lameter
2007-11-07 8:55 ` Johannes Weiner
2007-11-07 18:30 ` Christoph Lameter
2007-11-08 15:07 ` Mel Gorman
2007-11-08 18:59 ` Christoph Lameter
2007-11-07 1:11 ` [patch 08/23] SLUB: Replace ctor field with ops field in /sys/slab/:0000008 /sys/slab/:0000016 /sys/slab/:0000024 /sys/slab/:0000032 /sys/slab/:0000040 /sys/slab/:0000048 /sys/slab/:0000056 /sys/slab/:0000064 /sys/slab/:0000072 /sys/slab/:0000080 /sys/slab/:0000088 /sys/slab/:0000096 /sys/slab/:0000104 /sys/slab/:0000128 /sys/slab/:0000144 /sys/slab/:0000184 /sys/slab/:0000192 /sys/slab/:0000216 /sys/slab/:0000256 /sys/slab/:0000344 /sys/slab/:0000384 /sys/slab/:0000448 /sys/slab/:0000512 /sys/slab/:0000768 /sys/slab/:0000968 /sys/slab/:0001024 /sys/slab/:0001152 /sys/slab/:0001312 /sys/slab/:0001536 /sys/slab/:0002048 /sys/slab/:0003072 /sys/slab/:0004096 /sys/slab/:a-0000016 /sys/slab/:a-0000024 /sys/slab/:a-0000056 /sys/slab/:a-0000080 /sys/slab/:a-0000128 /sys/slab/Acpi-Namesp ace /sys/slab/Acpi-Operand /sys/slab/Acpi-Parse /sys/slab/Acpi-ParseExt /sys/slab/Acpi-State /sys/ Christoph Lameter
2007-11-07 1:11 ` [patch 09/23] SLUB: Add get() and kick() methods Christoph Lameter
2007-11-07 2:37 ` Adrian Bunk
2007-11-07 3:07 ` Christoph Lameter
2007-11-07 3:26 ` Adrian Bunk
2007-11-07 1:11 ` [patch 10/23] SLUB: Sort slab cache list and establish maximum objects for defrag slabs Christoph Lameter
2007-11-07 1:11 ` [patch 11/23] SLUB: Slab defrag core Christoph Lameter
2007-11-07 22:13 ` Christoph Lameter
2007-11-07 1:11 ` [patch 12/23] SLUB: Trigger defragmentation from memory reclaim Christoph Lameter
2007-11-07 9:28 ` Johannes Weiner
2007-11-07 18:34 ` Christoph Lameter
2007-11-08 15:12 ` Mel Gorman
2007-11-08 19:00 ` Christoph Lameter
2007-11-07 1:11 ` [patch 13/23] Buffer heads: Support slab defrag Christoph Lameter
2007-11-07 1:11 ` [patch 14/23] inodes: Support generic defragmentation Christoph Lameter
2007-11-07 10:17 ` Jörn Engel
2007-11-07 10:31 ` Jörn Engel
2007-11-07 10:35 ` Andreas Schwab
2007-11-07 10:35 ` Jörn Engel
2007-11-07 18:40 ` Christoph Lameter
2007-11-07 18:51 ` Jörn Engel
2007-11-07 19:00 ` Christoph Lameter
2007-11-07 1:11 ` [patch 15/23] FS: ExtX filesystem defrag Christoph Lameter
2007-11-07 1:11 ` [patch 16/23] FS: XFS slab defragmentation Christoph Lameter
2007-11-07 1:11 ` [patch 17/23] FS: Proc filesystem support for slab defrag Christoph Lameter
2007-11-07 1:11 ` [patch 18/23] FS: Slab defrag: Reiserfs support Christoph Lameter
2007-11-07 1:11 ` [patch 19/23] FS: Socket inode defragmentation Christoph Lameter
2007-11-07 1:11 ` [patch 20/23] dentries: Add constructor Christoph Lameter
2007-11-08 15:23 ` Mel Gorman
2007-11-08 19:03 ` Christoph Lameter
2007-11-07 1:11 ` [patch 21/23] dentries: dentry defragmentation Christoph Lameter
2007-11-07 1:11 ` [patch 22/23] SLUB: Slab reclaim through Lumpy reclaim Christoph Lameter
2007-11-07 1:11 ` [patch 23/23] SLUB: Add SlabReclaimable() to avoid repeated reclaim attempts Christoph Lameter
2007-11-08 15:26 ` [patch 00/23] Slab defragmentation V6 Mel Gorman
2007-11-08 16:01 ` Plans for Onezonelist patch series ??? Lee Schermerhorn
2007-11-08 18:34 ` Christoph Lameter
2007-11-08 18:40 ` Mel Gorman
2007-11-08 18:43 ` Christoph Lameter
2007-11-08 20:06 ` Mel Gorman
2007-11-08 20:20 ` Christoph Lameter
2007-11-08 20:29 ` Mel Gorman
2007-11-08 18:39 ` Mel Gorman
2007-11-08 19:39 ` Christoph Lameter
2007-11-08 19:12 ` [patch 00/23] Slab defragmentation V6 Christoph Lameter
2007-11-08 20:24 ` Mel Gorman
2007-11-08 20:28 ` Christoph Lameter
2007-11-08 20:58 ` Lee Schermerhorn
2007-11-08 21:27 ` Christoph Lameter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071108150007.GC2591@skynet.ie \
--to=mel@skynet.ie \
--cc=akpm@linux-foundatin.org \
--cc=clameter@sgi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox