linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: memory_hotplug: Remove unnecesary check from register_page_bootmem_info_section()
@ 2017-12-05 14:34 Oscar Salvador
  2017-12-05 14:44 ` Michal Hocko
  0 siblings, 1 reply; 2+ messages in thread
From: Oscar Salvador @ 2017-12-05 14:34 UTC (permalink / raw)
  To: linux-mm; +Cc: mhocko, akpm, vbabka

When we call register_page_bootmem_info_section() having CONFIG_SPARSEMEM_VMEMMAP enabled,
we check if the pfn is valid.
This check is redundant as we already checked this in register_page_bootmem_info_node()
before calling register_page_bootmem_info_section(), so let's get rid of it.

Signed-off-by: Oscar Salvador <osalvador@techadventures.net>
---
 mm/memory_hotplug.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index d0856ab2f28d..7452a53b027f 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -200,9 +200,6 @@ static void register_page_bootmem_info_section(unsigned long start_pfn)
 	struct mem_section *ms;
 	struct page *page, *memmap;
 
-	if (!pfn_valid(start_pfn))
-		return;
-
 	section_nr = pfn_to_section_nr(start_pfn);
 	ms = __nr_to_section(section_nr);
 
-- 
2.13.5

--
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	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-05 14:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-05 14:34 [PATCH] mm: memory_hotplug: Remove unnecesary check from register_page_bootmem_info_section() Oscar Salvador
2017-12-05 14:44 ` Michal Hocko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox