Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1433660

[PATCH v2 kernel 3/7] mm: add a function to get the max pfn

From Liang Li <liang.z.li@intel.com>
Newsgroups linux.kernel
Subject [PATCH v2 kernel 3/7] mm: add a function to get the max pfn
Date 2016-06-29 12:50 +0200
Message-ID <rPle9-36J-11@gated-at.bofh.it> (permalink)
References <rPle9-36J-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Expose the function to get the max pfn, so it can be used in the
virtio-balloon device driver.

Signed-off-by: Liang Li <liang.z.li@intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Mel Gorman <mgorman@techsingularity.net>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: Amit Shah <amit.shah@redhat.com>
---
 mm/page_alloc.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 6903b69..2083b40 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4515,6 +4515,12 @@ void show_free_areas(unsigned int filter)
 	show_swap_cache_info();
 }
 
+unsigned long get_max_pfn(void)
+{
+	return max_pfn;
+}
+EXPORT_SYMBOL(get_max_pfn);
+
 static void zoneref_set_zone(struct zone *zone, struct zoneref *zoneref)
 {
 	zoneref->zone = zone;
-- 
1.8.3.1

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH v2 kernel 3/7] mm: add a function to get the max pfn Liang Li <liang.z.li@intel.com> - 2016-06-29 12:50 +0200

csiph-web