linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@osdl.org>
To: Jan Dittmer <jdittmer@ppp0.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.6.12-rc4-mm2, alpha and mips broke
Date: Mon, 16 May 2005 13:09:19 -0700	[thread overview]
Message-ID: <20050516130919.306a12ba.akpm@osdl.org> (raw)
In-Reply-To: <4288DC6D.1020606@ppp0.net>

Jan Dittmer <jdittmer@ppp0.net> wrote:
>
> Comparing 2.6.12-rc4-mm1 to 2.6.12-rc4-mm2 (defconfig)
> ======================================================
> 
> - alpha: broke
>     AR      arch/alpha/lib/lib.a
>     GEN     .version
>     CHK     include/linux/compile.h
>     UPD     include/linux/compile.h
>     CC      init/version.o
>     LD      init/built-in.o
>     LD      .tmp_vmlinux1
>   mm/built-in.o(.text+0xe79c):/usr/src/ctest/mm/kernel/mm/slab.c:339: undefined reference to `__bad_size'
>   mm/built-in.o(.text+0xe7a0):/usr/src/ctest/mm/kernel/mm/slab.c:339: undefined reference to `__bad_size'
>   make[1]: *** [.tmp_vmlinux1] Error 1
>   make: *** [_all] Error 2
> 

argh, I forgot to add the patch to the series file, sorry.


From: Andrew Morton <akpm@osdl.org>

This doesn't work (on alpha, at least).

It's not inside __builtin_constant_p() so the compiler cannot be sure that all
the possible sizes have been checked for.

Cc: Christoph Lameter <clameter@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 mm/slab.c |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff -puN mm/slab.c~numa-aware-slab-allocator-v3-__bad_size-fix mm/slab.c
--- 25-alpha/mm/slab.c~numa-aware-slab-allocator-v3-__bad_size-fix	2005-05-15 22:25:33.000000000 -0700
+++ 25-alpha-akpm/mm/slab.c	2005-05-15 22:30:10.000000000 -0700
@@ -325,7 +325,8 @@ struct kmem_list3 __initdata initkmem_li
  */
 static inline int index_of(const size_t size)
 {
-	int i = 0;
+	if (__builtin_constant_p(size)) {
+		int i = 0;
 
 #define CACHE(x) \
 	if (size <=x) \
@@ -334,11 +335,12 @@ static inline int index_of(const size_t 
 		i++;
 #include "linux/kmalloc_sizes.h"
 #undef CACHE
-	{
-		extern void __bad_size(void);
-		__bad_size();
-		return 0;
+		{
+			extern void __bad_size(void);
+			__bad_size();
+		}
 	}
+	return 0;
 }
 
 #define INDEX_AC index_of(sizeof(struct array_cache))
_

> 
> - mips: broke
>     CC      mm/mempool.o
>     CC      mm/oom_kill.o
>     CC      mm/fadvise.o
>     CC      mm/page_alloc.o
>     CC      mm/page-writeback.o
>     CC      mm/pdflush.o
>     CC      mm/readahead.o
>     CC      mm/slab.o
>   mm/slab.c:117:2: #error "Broken Configuration: CONFIG_NUMA not set but MAX_NUMNODES !=1 !!"
>   make[1]: *** [mm/slab.o] Error 1
>   make: *** [mm] Error 2
> 

OK, Christoph is scratching his head over that one.

  reply	other threads:[~2005-05-16 20:15 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-05-16  9:13 2.6.12-rc4-mm2 Andrew Morton
2005-05-16  9:25 ` 2.6.12-rc4-mm2 Russell King
2005-05-16 10:50 ` 2.6.12-rc4-mm2 Danny ter Haar
2005-05-16 11:17   ` 2.6.12-rc4-mm2 Alexey Dobriyan
2005-05-16 11:38     ` 2.6.12-rc4-mm2 Danny ter Haar
2005-05-16 12:15       ` 2.6.12-rc4-mm2 Alexey Dobriyan
2005-05-16 17:11         ` 2.6.12-rc4-mm2 Danny ter Haar
2005-05-16 17:43           ` 2.6.12-rc4-mm2 Alexey Dobriyan
2005-05-16 19:30             ` 2.6.12-rc4-mm2 Danny ter Haar
2005-05-16 12:30 ` 2.6.12-rc4-mm2 Brice Goglin
2005-05-16 17:46 ` 2.6.12-rc4-mm2, alpha and mips broke Jan Dittmer
2005-05-16 20:09   ` Andrew Morton [this message]
2005-05-16 19:18 ` 2.6.12-rc4-mm2: proc-pid-smaps.patch broke nommu Adrian Bunk
2005-05-21  2:19   ` Mauricio Lin
2005-05-21  2:39     ` Mauricio Lin
2005-07-21 15:04     ` Adrian Bunk
2005-05-17  9:06 ` 2.6.12-rc4-mm2 Brice Goglin
2005-05-17 16:38   ` 2.6.12-rc4-mm2 Richard Purdie
2005-05-18 22:45     ` 2.6.12-rc4-mm2 Richard Purdie
2005-05-18  7:14 ` 2.6.12-rc4-mm2 Coywolf Qi Hunt
2005-05-18 20:26 ` 2.6.12-rc4-mm2 Alexander Nyberg
2005-05-19 14:59 ` 2.6.12-rc4-mm2 Brice Goglin
2005-05-22 21:27 ` [bugfix] try_to_unmap_cluster() passes out-of-bounds pte to pte_unmap() William Lee Irwin III
2005-05-22 22:00   ` Andrew Morton
2005-05-24  0:14   ` Andrew Morton
2005-05-24  2:48     ` William Lee Irwin III
2005-05-24  4:38       ` Hugh Dickins
2005-05-24  8:02         ` Nick Piggin
2007-06-27  0:35 ` Problems with fb console [was Re: 2.6.12-rc4-mm2] J.A. Magallón
2007-06-27  0:54   ` Andrew Morton
2007-06-27 14:21     ` H. Peter Anvin
2007-06-27  7:20   ` DervishD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20050516130919.306a12ba.akpm@osdl.org \
    --to=akpm@osdl.org \
    --cc=jdittmer@ppp0.net \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).