All of lore.kernel.org
 help / color / mirror / Atom feed
* + memblock-add-assertion-for-zero-allocation-alignment.patch added to -mm tree
@ 2013-03-06 22:44 akpm
  2013-03-07  0:07 ` Yinghai Lu
  0 siblings, 1 reply; 4+ messages in thread
From: akpm @ 2013-03-06 22:44 UTC (permalink / raw)
  To: mm-commits; +Cc: Vineet.Gupta1, liwanp, mingo, tj, vgupta, yinghai


The patch titled
     Subject: memblock: add assertion for zero allocation alignment
has been added to the -mm tree.  Its filename is
     memblock-add-assertion-for-zero-allocation-alignment.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: Vineet Gupta <Vineet.Gupta1@synopsys.com>
Subject: memblock: add assertion for zero allocation alignment

This came to light when calling memblock allocator from arc port (for
copying flattended DT).  If a "0" alignment is passed, the allocator
round_up() call incorrectly rounds up the size to 0.

round_up(num, alignto) => ((num - 1) | (alignto -1)) + 1

While the obvious allocation failure causes kernel to panic, it is better
to warn the caller to fix the code.

Tejun suggested that instead of BUG_ON(!align) - which might be
ineffective due to pending console init and such, it is better to WARN_ON,
and continue the boot with a reasonable default align.

Caller passing @size need not be handled similarly as the subsequent
panic will indicate that anyhow.

Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Wanpeng Li <liwanp@linux.vnet.ibm.com>
Cc: Ingo Molnar <mingo@kernel.org>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

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

diff -puN mm/memblock.c~memblock-add-assertion-for-zero-allocation-alignment mm/memblock.c
--- a/mm/memblock.c~memblock-add-assertion-for-zero-allocation-alignment
+++ a/mm/memblock.c
@@ -771,6 +771,9 @@ static phys_addr_t __init memblock_alloc
 {
 	phys_addr_t found;
 
+	if (WARN_ON(!align))
+		align = __alignof__(long long);
+
 	/* align @size to avoid excessive fragmentation on reserved array */
 	size = round_up(size, align);
 
_

Patches currently in -mm which might be from Vineet.Gupta1@synopsys.com are

memblock-add-assertion-for-zero-allocation-alignment.patch


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-03-07  1:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-06 22:44 + memblock-add-assertion-for-zero-allocation-alignment.patch added to -mm tree akpm
2013-03-07  0:07 ` Yinghai Lu
2013-03-07  0:16   ` Andrew Morton
2013-03-07  1:03   ` H. Peter Anvin

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.