X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fmain.c;h=932b739df96e72174f6c8a4ebb7458d30dbf000b;hb=97126b352ec28abf6c6d8ec3883f0179a7d431c1;hp=81621720a861676a7b78e6bf4529e0a01cd1af70;hpb=67e86022168d1a6a7dcc8d52b3aaef95d6a5139f;p=palacios.git diff --git a/linux_module/main.c b/linux_module/main.c index 8162172..932b739 100644 --- a/linux_module/main.c +++ b/linux_module/main.c @@ -355,8 +355,9 @@ static int read_guests_details(struct seq_file *s, void *v) seq_printf(s, "\nMemory Regions\n"); for (j=0;jnum_regions;j++) { - seq_printf(s," region %u has HPAs 0x%p-0x%p\n", - j, mem->region[j].host_paddr, mem->region[j].host_paddr+mem->region[j].size); + seq_printf(s," region %u has HPAs 0x%p-0x%p (node %d)\n", + j, mem->region[j].host_paddr, mem->region[j].host_paddr+mem->region[j].size, + numa_addr_to_node((uintptr_t)(mem->region[j].host_paddr))); } } seq_printf(s,