+ mm-memblock-warn_on-when-flags-differs-from-overlap-region.patch added to -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     Subject: mm/memblock.c: WARN_ON when flags differs from overlap region
has been added to the -mm tree.  Its filename is
     mm-memblock-warn_on-when-flags-differs-from-overlap-region.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/mm-memblock-warn_on-when-flags-differs-from-overlap-region.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/mm-memblock-warn_on-when-flags-differs-from-overlap-region.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: Wei Yang <weiyang@xxxxxxxxxxxxxxxxxx>
Subject: mm/memblock.c: WARN_ON when flags differs from overlap region

Each memblock_region has flags to indicates the Node ID of this range. 
For the overlap case, memblock_add_range() inserts the lower part and
leave the upper part as indicated in the overlapped region.

If the flags of the new range differs from the overlapped region, the
information recorded is not correct.

This patch adds a WARN_ON when the flags of the new range differs from the
overlapped region.

Signed-off-by: Wei Yang <weiyang@xxxxxxxxxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 mm/memblock.c |    1 +
 1 file changed, 1 insertion(+)

diff -puN mm/memblock.c~mm-memblock-warn_on-when-flags-differs-from-overlap-region mm/memblock.c
--- a/mm/memblock.c~mm-memblock-warn_on-when-flags-differs-from-overlap-region
+++ a/mm/memblock.c
@@ -569,6 +569,7 @@ repeat:
 #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
 			WARN_ON(nid != memblock_get_region_node(rgn));
 #endif
+			WARN_ON(flags != rgn->flags);
 			nr_new++;
 			if (insert)
 				memblock_insert_region(type, i++, base,
_

Patches currently in -mm which might be from weiyang@xxxxxxxxxxxxxxxxxx are

mm-memblock-warn_on-when-nid-differs-from-overlap-region.patch
mm-page-refine-the-calculation-of-highest-possible-node-id.patch
mm-page-remove-unused-variable-of-free_area_init_core.patch
mm-memblock-warn_on-when-flags-differs-from-overlap-region.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux