linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: add node physical memory range to sysfs
@ 2012-12-07 22:34 Davidlohr Bueso
  2012-12-07 23:51 ` Andrew Morton
  2012-12-08 19:45 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 11+ messages in thread
From: Davidlohr Bueso @ 2012-12-07 22:34 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-kernel, linux-mm

This patch adds a new 'memrange' file that shows the starting and
ending physical addresses that are associated to a node. This is
useful for identifying specific DIMMs within the system.

Signed-off-by: Davidlohr Bueso <davidlohr.bueso@hp.com>
---
 drivers/base/node.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/drivers/base/node.c b/drivers/base/node.c
index af1a177..f165a0a 100644
--- a/drivers/base/node.c
+++ b/drivers/base/node.c
@@ -211,6 +211,19 @@ static ssize_t node_read_distance(struct device *dev,
 }
 static DEVICE_ATTR(distance, S_IRUGO, node_read_distance, NULL);
 
+static ssize_t node_read_memrange(struct device *dev,
+				  struct device_attribute *attr, char *buf)
+{
+	int nid = dev->id;
+	unsigned long start_pfn = NODE_DATA(nid)->node_start_pfn;
+	unsigned long end_pfn = start_pfn + NODE_DATA(nid)->node_spanned_pages;
+
+	return sprintf(buf, "%#010Lx-%#010Lx\n",
+		       (unsigned long long) start_pfn << PAGE_SHIFT,
+		       (unsigned long long) (end_pfn << PAGE_SHIFT) - 1);
+}
+static DEVICE_ATTR(memrange, S_IRUGO, node_read_memrange, NULL);
+
 #ifdef CONFIG_HUGETLBFS
 /*
  * hugetlbfs per node attributes registration interface:
@@ -274,6 +287,7 @@ int register_node(struct node *node, int num, struct node *parent)
 		device_create_file(&node->dev, &dev_attr_numastat);
 		device_create_file(&node->dev, &dev_attr_distance);
 		device_create_file(&node->dev, &dev_attr_vmstat);
+		device_create_file(&node->dev, &dev_attr_memrange);
 
 		scan_unevictable_register_node(node);
 
@@ -299,6 +313,7 @@ void unregister_node(struct node *node)
 	device_remove_file(&node->dev, &dev_attr_numastat);
 	device_remove_file(&node->dev, &dev_attr_distance);
 	device_remove_file(&node->dev, &dev_attr_vmstat);
+	device_remove_file(&node->dev, &dev_attr_memrange);
 
 	scan_unevictable_unregister_node(node);
 	hugetlb_unregister_node(node);		/* no-op, if memoryless node */
-- 
1.7.11.7



--
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>

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-12-14  0:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-07 22:34 [PATCH] mm: add node physical memory range to sysfs Davidlohr Bueso
2012-12-07 23:51 ` Andrew Morton
2012-12-08  0:17   ` Dave Hansen
2012-12-13  1:18     ` Davidlohr Bueso
2012-12-13  1:48       ` Dave Hansen
2012-12-13  2:03         ` Davidlohr Bueso
2012-12-13  4:49           ` Dave Hansen
2012-12-13 15:17             ` KOSAKI Motohiro
2012-12-13 23:15             ` Davidlohr Bueso
2012-12-14  0:18               ` Dave Hansen
2012-12-08 19:45 ` Greg Kroah-Hartman

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).