On Thu, 30 Aug 2007, Adrian Bunk wrote:Could you give me an asm dump via objdump of one of these functions? I wonder what is going on there? Seeing the code generated may give us a hint what is going on. Likely an old compiler that has troubles performing constant folding <sigh>. One solution would be to use a newer compiler? And yes, the page allocator pass through patch in mm would fix this. Or define CONFIG_BROKEN_CONSTANT_FOLDING for alpha and then use this patch: --- include/linux/slub_def.h | 4 ++++ 1 file changed, 4 insertions(+) Index: linux-2.6/include/linux/slub_def.h =================================================================== --- linux-2.6.orig/include/linux/slub_def.h 2007-08-29 17:03:48.000000000 -0700 +++ linux-2.6/include/linux/slub_def.h 2007-08-29 17:09:55.000000000 -0700 @@ -168,6 +168,7 @@ void *__kmalloc(size_t size, gfp_t flags static inline void *kmalloc(size_t size, gfp_t flags) { +#ifndef CONFIG_BROKEN_CONSTANT_FOLDING if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) { struct kmem_cache *s = kmalloc_slab(size); @@ -176,6 +177,7 @@ static inline void *kmalloc(size_t size, return kmem_cache_alloc(s, flags); } else +#endif return __kmalloc(size, flags); } @@ -185,6 +187,7 @@ void *kmem_cache_alloc_node(struct kmem_ static inline void *kmalloc_node(size_t size, gfp_t flags, int node) { +#ifndef CONFIG_BROKEN_CONSTANT_FOLDING if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) { struct kmem_cache *s = kmalloc_slab(size); @@ -193,6 +196,7 @@ static inline void *kmalloc_node(size_t return kmem_cache_alloc_node(s, flags, node); } else +#endif return __kmalloc_node(size, flags, node); } #endif -
| Bart Van Assche | Integration of SCST in the mainstream Linux kernel |
| Greg Kroah-Hartman | [PATCH 010/196] Chinese: add translation of Codingstyle |
| Linus Torvalds | Linux 2.6.27-rc8 |
| Alan Cox | [PATCH 00/76] Queued TTY Patches |
git: | |
| Junio C Hamano | Re: [PATCH] Teach remote machinery about remotes.default config variable |
| free cycle | How to Import a bitkeeper repo into git |
| Pierre Habouzit | Re: git-rerere observations and feature suggestions |
| David Miller | Re: Git and GCC |
| GVG GVG | ssh_exchange_identification: Connection closed by remote host |
| Richard Stallman | Real men don't attack straw men |
| Daniel Ouellet | identifying sparse files and get ride of them trick available? |
| Leon Dippenaar | New tcp stack attack |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Kim Phillips | [PATCH 0/5] fixups for mpc8360 rev. 2.1 erratum #2 (RGMII Timing) |
| Rafael J. Wysocki | Re: [bug?] tg3: Failed to load firmware "tigon/tg3_tso.bin" |
| Patrick McHardy | Re: Not understand some in htb_do_events function |
