* [PATCH] numactl: Show distance info even for machines without 0th node.
@ 2012-09-11 9:20 Petr Holasek
0 siblings, 0 replies; only message in thread
From: Petr Holasek @ 2012-09-11 9:20 UTC (permalink / raw)
To: Cliff Wickman; +Cc: linux-numa, Petr Holasek
This patch fixes hardcoded requirement for installed node 0 on machine.
Now numactl -H call fails only when there is no entry in distance table
at all.
Signed-off-by: Petr Holasek <pholasek@redhat.com>
---
numactl.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/numactl.c b/numactl.c
index 047a6d0..339f670 100755
--- a/numactl.c
+++ b/numactl.c
@@ -186,8 +186,14 @@ char *fmt_mem(unsigned long long mem, char *buf)
static void print_distances(int maxnode)
{
int i,k;
+ int fst = 0;
- if (numa_distance(maxnode,0) == 0) {
+ for (i = 0; i <= maxnode; i++)
+ if (numa_bitmask_isbitset(numa_nodes_ptr, i)) {
+ fst = i;
+ break;
+ }
+ if (numa_distance(maxnode,fst) == 0) {
printf("No distance information available.\n");
return;
}
--
1.7.11.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-09-11 9:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-11 9:20 [PATCH] numactl: Show distance info even for machines without 0th node Petr Holasek
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).