All of lore.kernel.org
 help / color / mirror / Atom feed
* + drivers-memory-check-for-missing-sections-when-testing-zones.patch added to -mm tree
@ 2015-12-05  0:03 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2015-12-05  0:03 UTC (permalink / raw)
  To: abanman, gregkh, rja, sjennings, stable, mm-commits


The patch titled
     Subject: mm/memory_hotplug.c: check for missing sections when testing zones
has been added to the -mm tree.  Its filename is
     drivers-memory-check-for-missing-sections-when-testing-zones.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/drivers-memory-check-for-missing-sections-when-testing-zones.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/drivers-memory-check-for-missing-sections-when-testing-zones.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Andrew Banman <abanman@sgi.com>
Subject: mm/memory_hotplug.c: check for missing sections when testing zones

test_pages_in_a_zone() does not account for the possibility of missing
sections in the given pfn range.  Since pfn_valid_within always returns 1
when CONFIG_HOLES_IN_ZONE is not set, invalid pfns from missing sections
will pass the test, resulting in a kernel oops.  This is remedied by
simply checking for the presence of the pfn's section.  We don't have to
remove the pfn_valid_within optimization.

The patch also prevents a crash from offlining memory devices with missing
sections.

Cc: Seth Jennings <sjennings@variantweb.net>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Russ Anderson <rja@sgi.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/memory_hotplug.c |    3 +++
 1 file changed, 3 insertions(+)

diff -puN mm/memory_hotplug.c~drivers-memory-check-for-missing-sections-when-testing-zones mm/memory_hotplug.c
--- a/mm/memory_hotplug.c~drivers-memory-check-for-missing-sections-when-testing-zones
+++ a/mm/memory_hotplug.c
@@ -1383,6 +1383,9 @@ int test_pages_in_a_zone(unsigned long s
 	     pfn < end_pfn;
 	     pfn += MAX_ORDER_NR_PAGES) {
 		i = 0;
+		/* Make sure the memory section is present */
+		if (!present_section_nr(pfn_to_section_nr(pfn)))
+			continue;
 		/* This is just a CONFIG_HOLES_IN_ZONE check.*/
 		while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
 			i++;
_

Patches currently in -mm which might be from abanman@sgi.com are

drivers-memory-check-for-missing-sections-when-testing-zones.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-12-05  0:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-05  0:03 + drivers-memory-check-for-missing-sections-when-testing-zones.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.