aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Carstens <[email protected]>2017-02-24 14:55:54 -0800
committerLinus Torvalds <[email protected]>2017-02-24 17:46:53 -0800
commit7409c5f738c879f7595b46314635c02c4c162484 (patch)
tree8465e72624d3a19ad780ffdbdbabcb6d3e3bbd26
parent997126bbc58e432e5f26ecec4498229003df1c66 (diff)
memblock: let memblock_type_name know about physmem type
Since commit 70210ed950b5 ("mm/memblock: add physical memory list") the memblock structure knows about a physical memory list. memblock_type_name() should return "physmem" instead of "unknown" if the name of the physmem memblock_type is being asked for. Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Heiko Carstens <[email protected]> Cc: Philipp Hachtmann <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/memblock.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mm/memblock.c b/mm/memblock.c
index c004f52be419..f82c65aace9a 100644
--- a/mm/memblock.c
+++ b/mm/memblock.c
@@ -72,6 +72,10 @@ memblock_type_name(struct memblock_type *type)
return "memory";
else if (type == &memblock.reserved)
return "reserved";
+#ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP
+ else if (type == &memblock.physmem)
+ return "physmem";
+#endif
else
return "unknown";
}