From: Andi Kleen <andi@firstfloor.org>
To: cpw@sgi.com, linux-numa@vger.kernel.org
Subject: [PATCH] numactl: Support dumping nodes of pages in shared memory segments
Date: Fri, 5 Jun 2009 11:33:24 +0200 [thread overview]
Message-ID: <20090605093324.GA6159@basil.nowhere.org> (raw)
I got a request to be able to dump the nodes individually of a shared memory
segment. This can be very verbose for interleaving on large segments, but is still useful
for some analysis.
This patch implements that with a new --dump-nodes option
Against numactl 2.0.3-rc3
-Andi
---
numactl.8 | 5 +++++
numactl.c | 13 ++++++++++---
shm.c | 31 +++++++++++++++++++++++++++++++
shm.h | 1 +
4 files changed, 47 insertions(+), 3 deletions(-)
Index: numactl-2.0.3-rc3/numactl.c
===================================================================
--- numactl-2.0.3-rc3.orig/numactl.c
+++ numactl-2.0.3-rc3/numactl.c
@@ -49,6 +49,7 @@ struct option opts[] = {
{"strict", 0, 0, 't'},
{"shmmode", 1, 0, 'M'},
{"dump", 0, 0, 'd'},
+ {"dump-nodes", 0, 0, 'D'},
{"shmid", 1, 0, 'I'},
{"huge", 0, 0, 'u'},
{"touch", 0, 0, 'T'},
@@ -67,8 +68,8 @@ void usage(void)
" numactl [--length length] [--offset offset] [--shmmode shmmode]\n"
" [--strict]\n"
" [--shmid id] --shm shmkeyfile | --file tmpfsfile\n"
- " [--huge] [--touch]\n"
- " memory policy\n"
+ " [--huge] [--touch] \n"
+ " memory policy | --dump | --dump-nodes\n"
"\n"
"memory policy is --interleave, --preferred, --membind, --localalloc\n"
"nodes is a comma delimited list of node numbers or A-B ranges or all.\n"
@@ -466,6 +467,12 @@ int main(int ac, char **av)
dump_shm();
do_dump = 1;
break;
+ case 'D': /* --dump */
+ if (shmfd < 0)
+ complain("Cannot do --dump-nodes without shared memory.\n");
+ dump_shm_nodes();
+ do_dump = 1;
+ break;
case 't': /* --strict */
did_strict = 1;
numa_set_strict(1);
@@ -520,7 +527,7 @@ int main(int ac, char **av)
fprintf(stderr,"numactl: warning. Strict flag for process ignored.\n");
if (do_dump)
- usage_msg("cannot do --dump for process");
+ usage_msg("cannot do --dump|--dump-shm for process");
if (shmoption)
usage_msg("shm related option %s for process", shmoption);
Index: numactl-2.0.3-rc3/shm.c
===================================================================
--- numactl-2.0.3-rc3.orig/shm.c
+++ numactl-2.0.3-rc3/shm.c
@@ -202,6 +202,37 @@ void dump_shm(void)
dumppol(start, c, prevpol, prevnodes);
}
+static void dumpnode(unsigned long long start, unsigned long long end, int node)
+{
+ printf("%016Lx-%016Lx: %d\n", shmoffset+start, shmoffset+end, node);
+}
+
+/* Dump nodes in a shared memory segment. */
+void dump_shm_nodes(void)
+{
+ int prevnode = -1, node;
+ unsigned long long c, start;
+
+ start = 0;
+ if (shmlen == 0) {
+ printf("nothing to dump\n");
+ return;
+ }
+
+ for (c = 0; c < shmlen; c += shm_pagesize) {
+ if (get_mempolicy(&node, NULL, 0, c+shmptr,
+ MPOL_F_ADDR|MPOL_F_NODE) < 0)
+ err("get_mempolicy on shm");
+ if (node == prevnode)
+ continue;
+ if (prevnode != -1)
+ dumpnode(start, c, prevnode);
+ prevnode = node;
+ start = c;
+ }
+ dumpnode(start, c, prevnode);
+}
+
static void vwarn(char *ptr, char *fmt, ...)
{
va_list ap;
Index: numactl-2.0.3-rc3/shm.h
===================================================================
--- numactl-2.0.3-rc3.orig/shm.h
+++ numactl-2.0.3-rc3/shm.h
@@ -8,6 +8,7 @@ extern unsigned long long shmoffset;
extern int shmflags;
extern void dump_shm(void);
+extern void dump_shm_nodes(void);
extern void attach_shared(char *);
extern void attach_sysvshm(char *);
extern void verify_shm(int policy, struct bitmask *);
Index: numactl-2.0.3-rc3/numactl.8
===================================================================
--- numactl-2.0.3-rc3.orig/numactl.8
+++ numactl-2.0.3-rc3/numactl.8
@@ -64,6 +64,8 @@ numactl \- Control NUMA policy for proce
.B \-\-touch
] [
.B \-\-dump
+] [
+.B \-\-dump-nodes
]
memory policy
.SH DESCRIPTION
@@ -225,6 +227,9 @@ is applied when an applications maps and
.B \-\-dump
Dump policy in the specified range.
.TP
+.B \-\-dump-nodes
+Dump all nodes of the specific range (very verbose!)
+.TP
Valid node specifiers
.TS
tab(:);
--
ak@linux.intel.com -- Speaking for myself only.
next reply other threads:[~2009-06-05 9:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-05 9:33 Andi Kleen [this message]
2009-06-05 13:54 ` [PATCH] numactl: Support dumping nodes of pages in shared memory segments Cliff Wickman
2009-06-05 18:37 ` Andi Kleen
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=20090605093324.GA6159@basil.nowhere.org \
--to=andi@firstfloor.org \
--cc=cpw@sgi.com \
--cc=linux-numa@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).