* Major slab mem leak with 2.6.17 / GCC 4.1.1 @ 2006-10-13 0:49 nmeyers 2006-10-13 5:56 ` Pekka Enberg 2006-10-13 8:25 ` Mike Galbraith 0 siblings, 2 replies; 15+ messages in thread From: nmeyers @ 2006-10-13 0:49 UTC (permalink / raw) To: linux-kernel Hello, I've been chasing an OOM-death problem on 2.6.17 that showed up while running a J2EE application on my recently-built Gentoo box. The crash was ugly - leaking huge numbers of skbuff_head_cache and size-2048 slab entries until my java processes died and the system became unusable and unresponsive. My environment is: Gentoo kernel build 2.6.17-gentoo-r8, built with GCC 4.1.1. I tried Catalin Marinas' kmemleak patches, and had to rebuild with GCC 3.4.6 because of a 4.1.1 compiler bug that prevents compilation of the patches. And... building with 3.4.5 fixed the leak! So I guess I have very little detail to report - except that there's a nasty leak in 2.6.17 when built with 4.1.1. If anyone has a version of kmemleak that I can build with 4.1.1, or any other suggestions for instrumentation, I'd be happy to gather more data - the problem is very easy for me to reproduce. Nathan Meyers nmeyers@vestmark.com ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-13 0:49 Major slab mem leak with 2.6.17 / GCC 4.1.1 nmeyers @ 2006-10-13 5:56 ` Pekka Enberg 2006-10-13 11:59 ` Catalin Marinas 2006-10-13 8:25 ` Mike Galbraith 1 sibling, 1 reply; 15+ messages in thread From: Pekka Enberg @ 2006-10-13 5:56 UTC (permalink / raw) To: nmeyers@vestmark.com; +Cc: linux-kernel, Catalin Marinas On 10/13/06, nmeyers@vestmark.com <nmeyers@vestmark.com> wrote: > If anyone has a version of kmemleak that I can build with 4.1.1, or > any other suggestions for instrumentation, I'd be happy to gather more > data - the problem is very easy for me to reproduce. You should cc Catalin for that. Alternatively, you could try CONFIG_DEBUG_SLAB_LEAK. ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-13 5:56 ` Pekka Enberg @ 2006-10-13 11:59 ` Catalin Marinas 2006-10-15 7:59 ` Mike Galbraith 0 siblings, 1 reply; 15+ messages in thread From: Catalin Marinas @ 2006-10-13 11:59 UTC (permalink / raw) To: Pekka Enberg; +Cc: nmeyers@vestmark.com, linux-kernel On 13/10/06, Pekka Enberg <penberg@cs.helsinki.fi> wrote: > On 10/13/06, nmeyers@vestmark.com <nmeyers@vestmark.com> wrote: > > If anyone has a version of kmemleak that I can build with 4.1.1, or > > any other suggestions for instrumentation, I'd be happy to gather more > > data - the problem is very easy for me to reproduce. > > You should cc Catalin for that. Alternatively, you could try > CONFIG_DEBUG_SLAB_LEAK. Thanks for cc'ing me (I'm still on holiday and not following the mailing list). The problem is the __builtin_constant_p gcc function which doesn't work properly with 4.x versions. It was fixed in latest gcc versions though. Kmemleak relies on __builtin_constant_p to determine the pointer aliases and without it you would get plenty of false positives. -- Catalin ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-13 11:59 ` Catalin Marinas @ 2006-10-15 7:59 ` Mike Galbraith 2006-10-15 14:14 ` nmeyers 2006-10-16 5:32 ` Mike Galbraith 0 siblings, 2 replies; 15+ messages in thread From: Mike Galbraith @ 2006-10-15 7:59 UTC (permalink / raw) To: Catalin Marinas; +Cc: Pekka Enberg, nmeyers@vestmark.com, linux-kernel [-- Attachment #1: Type: text/plain, Size: 1292 bytes --] On Fri, 2006-10-13 at 12:59 +0100, Catalin Marinas wrote: > On 13/10/06, Pekka Enberg <penberg@cs.helsinki.fi> wrote: > > On 10/13/06, nmeyers@vestmark.com <nmeyers@vestmark.com> wrote: > > > If anyone has a version of kmemleak that I can build with 4.1.1, or > > > any other suggestions for instrumentation, I'd be happy to gather more > > > data - the problem is very easy for me to reproduce. > > > > You should cc Catalin for that. Alternatively, you could try > > CONFIG_DEBUG_SLAB_LEAK. > > Thanks for cc'ing me (I'm still on holiday and not following the > mailing list). The problem is the __builtin_constant_p gcc function > which doesn't work properly with 4.x versions. It was fixed in latest > gcc versions though. Kmemleak relies on __builtin_constant_p to > determine the pointer aliases and without it you would get plenty of > false positives. SuSE (for one?) doesn't appear to know about it. gcc version 4.1.2 20060920 (month old prerelease) still has the problem. After some rummaging around, I found the fix (attached in case someone else wants to try it). 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease runs a lot faster ;-) I'll try a stripped down config sometime. -Mike [-- Attachment #2: gcc41-rh198849.patch --] [-- Type: text/x-patch, Size: 2796 bytes --] 2006-06-04 Mark Shinwell <shinwell codesourcery com> * tree.h: Declare folding_initializer. * builtins.c (fold_builtin_constant_p): Give definite answer if folding inside an initializer. * fold-const.c: Define folding_initializer. (START_FOLD_INIT): Save and then set folding_initializer. (END_FOLD_INIT): Restore folding_initializer. * gcc.c-torture/compile/builtin_constant_p.c: New test. --- gcc/tree.h (revision 114357) +++ gcc/tree.h (revision 114359) @@ -4142,6 +4142,10 @@ extern void using_eh_for_cleanups (void) /* In fold-const.c */ +/* Non-zero if we are folding constants inside an initializer; zero + otherwise. */ +extern int folding_initializer; + /* Fold constants as much as possible in an expression. Returns the simplified expression. Acts only on the top level of the expression; --- gcc/builtins.c (revision 114357) +++ gcc/builtins.c (revision 114359) @@ -6495,7 +6495,8 @@ fold_builtin_constant_p (tree arglist) if (TREE_SIDE_EFFECTS (arglist) || AGGREGATE_TYPE_P (TREE_TYPE (arglist)) || POINTER_TYPE_P (TREE_TYPE (arglist)) - || cfun == 0) + || cfun == 0 + || folding_initializer) return integer_zero_node; return 0; --- gcc/fold-const.c (revision 114357) +++ gcc/fold-const.c (revision 114359) @@ -59,6 +59,10 @@ Software Foundation, 51 Franklin Street, #include "langhooks.h" #include "md5.h" +/* Non-zero if we are folding constants inside an initializer; zero + otherwise. */ +int folding_initializer = 0; + /* The following constants represent a bit based encoding of GCC's comparison operators. This encoding simplifies transformations on relational comparison operators, such as AND and OR. */ @@ -11708,16 +11712,19 @@ fold_build3_stat (enum tree_code code, t int saved_trapping_math = flag_trapping_math;\ int saved_rounding_math = flag_rounding_math;\ int saved_trapv = flag_trapv;\ + int saved_folding_initializer = folding_initializer;\ flag_signaling_nans = 0;\ flag_trapping_math = 0;\ flag_rounding_math = 0;\ - flag_trapv = 0 + flag_trapv = 0;\ + folding_initializer = 1; #define END_FOLD_INIT \ flag_signaling_nans = saved_signaling_nans;\ flag_trapping_math = saved_trapping_math;\ flag_rounding_math = saved_rounding_math;\ - flag_trapv = saved_trapv + flag_trapv = saved_trapv;\ + folding_initializer = saved_folding_initializer; tree fold_build1_initializer (enum tree_code code, tree type, tree op) --- gcc/testsuite/gcc.c-torture/compile/builtin_constant_p.c (revision 0) +++ gcc/testsuite/gcc.c-torture/compile/builtin_constant_p.c (revision 114359) @@ -0,0 +1,8 @@ +/* { dg-options "-O2" } */ + +int main (int argc, char *argv[]) +{ + static int a[] = { __builtin_constant_p (argc) ? 1 : 0 }; + return a[0]; +} + ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-15 7:59 ` Mike Galbraith @ 2006-10-15 14:14 ` nmeyers 2006-10-15 17:59 ` Mike Galbraith 2006-10-16 5:32 ` Mike Galbraith 1 sibling, 1 reply; 15+ messages in thread From: nmeyers @ 2006-10-15 14:14 UTC (permalink / raw) To: Mike Galbraith; +Cc: Catalin Marinas, nmeyers@vestmark.com, linux-kernel On Sun, Oct 15, 2006 at 07:59:14AM +0000, Mike Galbraith wrote: > On Fri, 2006-10-13 at 12:59 +0100, Catalin Marinas wrote: > > On 13/10/06, Pekka Enberg <penberg@cs.helsinki.fi> wrote: > > > On 10/13/06, nmeyers@vestmark.com <nmeyers@vestmark.com> wrote: > > > > If anyone has a version of kmemleak that I can build with 4.1.1, or > > > > any other suggestions for instrumentation, I'd be happy to gather more > > > > data - the problem is very easy for me to reproduce. > > 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless > CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease > runs a lot faster ;-) I'll try a stripped down config sometime. > > -Mike Thanks for digging that up - I'm building gcc now and will let you know if any useful info emerges. Nathan ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-15 14:14 ` nmeyers @ 2006-10-15 17:59 ` Mike Galbraith 2006-10-18 13:59 ` Nathan Meyers 0 siblings, 1 reply; 15+ messages in thread From: Mike Galbraith @ 2006-10-15 17:59 UTC (permalink / raw) To: nmeyers; +Cc: Catalin Marinas, linux-kernel On Sun, 2006-10-15 at 10:14 -0400, nmeyers@vestmark.com wrote: > On Sun, Oct 15, 2006 at 07:59:14AM +0000, Mike Galbraith wrote: > > On Fri, 2006-10-13 at 12:59 +0100, Catalin Marinas wrote: > > > On 13/10/06, Pekka Enberg <penberg@cs.helsinki.fi> wrote: > > > > On 10/13/06, nmeyers@vestmark.com <nmeyers@vestmark.com> wrote: > > > > > If anyone has a version of kmemleak that I can build with 4.1.1, or > > > > > any other suggestions for instrumentation, I'd be happy to gather more > > > > > data - the problem is very easy for me to reproduce. > > > > 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless > > CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease > > runs a lot faster ;-) I'll try a stripped down config sometime. > > > > -Mike > > Thanks for digging that up - I'm building gcc now and will let you > know if any useful info emerges. Buyer beware of course ;-) -Mike ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-15 17:59 ` Mike Galbraith @ 2006-10-18 13:59 ` Nathan Meyers 0 siblings, 0 replies; 15+ messages in thread From: Nathan Meyers @ 2006-10-18 13:59 UTC (permalink / raw) To: Mike Galbraith; +Cc: Catalin Marinas, linux-kernel Mike Galbraith wrote: > On Sun, 2006-10-15 at 10:14 -0400, nmeyers@vestmark.com wrote: >> On Sun, Oct 15, 2006 at 07:59:14AM +0000, Mike Galbraith wrote: >>> On Fri, 2006-10-13 at 12:59 +0100, Catalin Marinas wrote: >>>> On 13/10/06, Pekka Enberg <penberg@cs.helsinki.fi> wrote: >>>>> On 10/13/06, nmeyers@vestmark.com <nmeyers@vestmark.com> wrote: >>>>>> If anyone has a version of kmemleak that I can build with 4.1.1, or >>>>>> any other suggestions for instrumentation, I'd be happy to gather more >>>>>> data - the problem is very easy for me to reproduce. >>> 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless >>> CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease >>> runs a lot faster ;-) I'll try a stripped down config sometime. >>> >>> -Mike >> Thanks for digging that up - I'm building gcc now and will let you >> know if any useful info emerges. > > Buyer beware of course ;-) > > -Mike > > So, after all this, what I have to report is: Nothing. Building the same kernel with which I saw the problem (Gentoo's 2.6.17-r8 ebuild) with the patched gcc 4.1.1 and the kmemleak patches failed to reproduce the problem. Either those changes perturbed the kernel enough to "fix" the problem, or my earlier kernel build was some sort of unrepeatable miscompile. I noticed one oddness with the 2.6.17 kmemleak patches when built with the patched gcc. When I had earlier built with gcc-3.4.6 (CONFIG_DEBUG_MEMLEAK_TRACE_LENGTH=4 and CONFIG_FRAME_POINTER=y), kmemleak reported good information: every entry included four levels of stack that clearly mapped to addresses described in System.map. That was not the case when I built with the patched 4.1.1: every entry included just one level of stack, with an apparently bogus address that didn't map into the range of addresses in System.map. So, in the end, a frustrated experiment. I'll be back if I find anything interesting. Until then, I'm leaving the list, so please include my address in any followup conversation. Thanks! Nathan Meyers nmeyers@vestmark.com ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-15 7:59 ` Mike Galbraith 2006-10-15 14:14 ` nmeyers @ 2006-10-16 5:32 ` Mike Galbraith 2006-10-16 8:07 ` Catalin Marinas 1 sibling, 1 reply; 15+ messages in thread From: Mike Galbraith @ 2006-10-16 5:32 UTC (permalink / raw) To: Catalin Marinas; +Cc: Pekka Enberg, nmeyers@vestmark.com, linux-kernel On Sun, 2006-10-15 at 07:59 +0000, Mike Galbraith wrote: > 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless > CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease > runs a lot faster ;-) I'll try a stripped down config sometime. My roughly three orders of magnitude (amusing to watch:) boot slowdown turned out to be stack unwinding. With CONFIG_UNWIND_INFO disabled, 2.6.19-rc2 + patch-2.6.19-rc1-kmemleak-0.11 runs just fine. -Mike ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-16 5:32 ` Mike Galbraith @ 2006-10-16 8:07 ` Catalin Marinas 2006-10-16 9:08 ` Mike Galbraith 0 siblings, 1 reply; 15+ messages in thread From: Catalin Marinas @ 2006-10-16 8:07 UTC (permalink / raw) To: Mike Galbraith; +Cc: Pekka Enberg, nmeyers@vestmark.com, linux-kernel On 16/10/06, Mike Galbraith <efault@gmx.de> wrote: > On Sun, 2006-10-15 at 07:59 +0000, Mike Galbraith wrote: > > > 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless > > CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease > > runs a lot faster ;-) I'll try a stripped down config sometime. > > My roughly three orders of magnitude (amusing to watch:) boot slowdown > turned out to be stack unwinding. With CONFIG_UNWIND_INFO disabled, > 2.6.19-rc2 + patch-2.6.19-rc1-kmemleak-0.11 runs just fine. Kmemleak introduces some overhead but shouldn't be that bad. DEBUG_SLAB also introduces an overhead by erasing the data in the allocated blocks. Note that if the allocated blocks are added to a list and never removed, kmemleak won't be able to detect the leak as the objects are stilled referred. In this case, you can only use DEBUG_SLAB_LEAK. -- Catalin ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-16 8:07 ` Catalin Marinas @ 2006-10-16 9:08 ` Mike Galbraith 2006-10-16 8:44 ` Catalin Marinas 0 siblings, 1 reply; 15+ messages in thread From: Mike Galbraith @ 2006-10-16 9:08 UTC (permalink / raw) To: Catalin Marinas; +Cc: Pekka Enberg, nmeyers@vestmark.com, linux-kernel On Mon, 2006-10-16 at 09:07 +0100, Catalin Marinas wrote: > On 16/10/06, Mike Galbraith <efault@gmx.de> wrote: > > On Sun, 2006-10-15 at 07:59 +0000, Mike Galbraith wrote: > > > > > 2.6.19-rc1 + patch-2.6.19-rc1-kmemleak-0.11 compiles fine now (unless > > > CONFIG_DEBUG_KEEP_INIT is set), boots and runs too.. but axle grease > > > runs a lot faster ;-) I'll try a stripped down config sometime. > > > > My roughly three orders of magnitude (amusing to watch:) boot slowdown > > turned out to be stack unwinding. With CONFIG_UNWIND_INFO disabled, > > 2.6.19-rc2 + patch-2.6.19-rc1-kmemleak-0.11 runs just fine. > > Kmemleak introduces some overhead but shouldn't be that bad. > DEBUG_SLAB also introduces an overhead by erasing the data in the > allocated blocks. 2.6.18 with your rc6 patch booted normally with stack unwind enabled. -Mike ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-16 9:08 ` Mike Galbraith @ 2006-10-16 8:44 ` Catalin Marinas 2006-10-16 9:33 ` Mike Galbraith 0 siblings, 1 reply; 15+ messages in thread From: Catalin Marinas @ 2006-10-16 8:44 UTC (permalink / raw) To: Mike Galbraith; +Cc: Pekka Enberg, nmeyers@vestmark.com, linux-kernel On 16/10/06, Mike Galbraith <efault@gmx.de> wrote: > On Mon, 2006-10-16 at 09:07 +0100, Catalin Marinas wrote: > > Kmemleak introduces some overhead but shouldn't be that bad. > > DEBUG_SLAB also introduces an overhead by erasing the data in the > > allocated blocks. > > 2.6.18 with your rc6 patch booted normally with stack unwind enabled. The only difference is that kmemleak now uses save_stack_trace() to generate the call chain. In the previous versions I implemented a simple stack backtrace myself, with the disadvantage that it only worked on ARM and x86. I think kmemleak should use the common stack trace API and investigate why it is slower (either save_stack_trace is slower with stack unwind enabled or kmemleak doesn't use these functions properly). -- Catalin ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-16 8:44 ` Catalin Marinas @ 2006-10-16 9:33 ` Mike Galbraith 0 siblings, 0 replies; 15+ messages in thread From: Mike Galbraith @ 2006-10-16 9:33 UTC (permalink / raw) To: Catalin Marinas; +Cc: Pekka Enberg, nmeyers@vestmark.com, linux-kernel On Mon, 2006-10-16 at 09:44 +0100, Catalin Marinas wrote: > On 16/10/06, Mike Galbraith <efault@gmx.de> wrote: > > On Mon, 2006-10-16 at 09:07 +0100, Catalin Marinas wrote: > > > Kmemleak introduces some overhead but shouldn't be that bad. > > > DEBUG_SLAB also introduces an overhead by erasing the data in the > > > allocated blocks. > > > > 2.6.18 with your rc6 patch booted normally with stack unwind enabled. > > The only difference is that kmemleak now uses save_stack_trace() to > generate the call chain. In the previous versions I implemented a > simple stack backtrace myself, with the disadvantage that it only > worked on ARM and x86. > > I think kmemleak should use the common stack trace API and investigate > why it is slower (either save_stack_trace is slower with stack unwind > enabled or kmemleak doesn't use these functions properly). The stack traces look fine without unwind, and at a glance looked fine with unwind as well, so I speculate you must be using save_stack_trace properly. The only difference I noticed was the incredible speed difference. I gave up on getting to run level 5 with unwind, getting to level 2 took ages, and the box was horribly slow at everything. -Mike ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-13 0:49 Major slab mem leak with 2.6.17 / GCC 4.1.1 nmeyers 2006-10-13 5:56 ` Pekka Enberg @ 2006-10-13 8:25 ` Mike Galbraith 2006-10-13 10:55 ` nmeyers 1 sibling, 1 reply; 15+ messages in thread From: Mike Galbraith @ 2006-10-13 8:25 UTC (permalink / raw) To: nmeyers; +Cc: linux-kernel On Thu, 2006-10-12 at 20:49 -0400, nmeyers@vestmark.com wrote: > I tried Catalin Marinas' kmemleak patches, and had to rebuild with > GCC 3.4.6 because of a 4.1.1 compiler bug that prevents compilation > of the patches. Yeah, seems any remotely recent gcc hates it. That puts a rather large dent in usability. > And... building with 3.4.5 fixed the leak! So I guess I have very little > detail to report - except that there's a nasty leak in 2.6.17 when built > with 4.1.1. If you build using 3.4.5 _without_ the kmemleak patches, do you see the leak again? (ie is kmemleak altering timing, or is kernel miscompiled) > If anyone has a version of kmemleak that I can build with 4.1.1, or > any other suggestions for instrumentation, I'd be happy to gather more > data - the problem is very easy for me to reproduce. I can only suggest trying latest/greatest to see if the issue is still present, and if so, try to find a way that others may trigger it. -Mike ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-13 8:25 ` Mike Galbraith @ 2006-10-13 10:55 ` nmeyers 2006-10-13 21:28 ` Mike Galbraith 0 siblings, 1 reply; 15+ messages in thread From: nmeyers @ 2006-10-13 10:55 UTC (permalink / raw) To: Mike Galbraith; +Cc: linux-kernel On Fri, Oct 13, 2006 at 08:25:12AM +0000, Mike Galbraith wrote: > On Thu, 2006-10-12 at 20:49 -0400, nmeyers@vestmark.com wrote: > > > I tried Catalin Marinas' kmemleak patches, and had to rebuild with > > GCC 3.4.6 because of a 4.1.1 compiler bug that prevents compilation > > of the patches. > > Yeah, seems any remotely recent gcc hates it. That puts a rather large > dent in usability. > > > And... building with 3.4.5 fixed the leak! So I guess I have very little > > detail to report - except that there's a nasty leak in 2.6.17 when built > > with 4.1.1. > > If you build using 3.4.5 _without_ the kmemleak patches, do you see the > leak again? (ie is kmemleak altering timing, or is kernel miscompiled) I wondered the same thing. I went back to the original source and .config - rebuilding with 3.4.6 (3.4.5 is a typo) fixed the leak. > > > If anyone has a version of kmemleak that I can build with 4.1.1, or > > any other suggestions for instrumentation, I'd be happy to gather more > > data - the problem is very easy for me to reproduce. > > I can only suggest trying latest/greatest to see if the issue is still > present, and if so, try to find a way that others may trigger it. I may just do that - apparently 4.1.2 is supposed to fix the kmemleak compile problem. My (admittedly lazy) inclination is to wait until that comes out in a Gentoo ebuild. Nathan > > -Mike > > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Major slab mem leak with 2.6.17 / GCC 4.1.1 2006-10-13 10:55 ` nmeyers @ 2006-10-13 21:28 ` Mike Galbraith 0 siblings, 0 replies; 15+ messages in thread From: Mike Galbraith @ 2006-10-13 21:28 UTC (permalink / raw) To: nmeyers; +Cc: linux-kernel On Fri, 2006-10-13 at 06:55 -0400, nmeyers@vestmark.com wrote: > On Fri, Oct 13, 2006 at 08:25:12AM +0000, Mike Galbraith wrote: > > On Thu, 2006-10-12 at 20:49 -0400, nmeyers@vestmark.com wrote: > > > > > I tried Catalin Marinas' kmemleak patches, and had to rebuild with > > > GCC 3.4.6 because of a 4.1.1 compiler bug that prevents compilation > > > of the patches. > > > > Yeah, seems any remotely recent gcc hates it. That puts a rather large > > dent in usability. > > > > > And... building with 3.4.5 fixed the leak! So I guess I have very little > > > detail to report - except that there's a nasty leak in 2.6.17 when built > > > with 4.1.1. > > > > If you build using 3.4.5 _without_ the kmemleak patches, do you see the > > leak again? (ie is kmemleak altering timing, or is kernel miscompiled) > > I wondered the same thing. I went back to the original source and .config > - rebuilding with 3.4.6 (3.4.5 is a typo) fixed the leak. Hmm. That leaves us with a 4.1.1 miss-compile maybe. > > > If anyone has a version of kmemleak that I can build with 4.1.1, or > > > any other suggestions for instrumentation, I'd be happy to gather more > > > data - the problem is very easy for me to reproduce. > > > > I can only suggest trying latest/greatest to see if the issue is still > > present, and if so, try to find a way that others may trigger it. > > I may just do that - apparently 4.1.2 is supposed to fix the kmemleak > compile problem. My (admittedly lazy) inclination is to wait until that > comes out in a Gentoo ebuild. I think some re-evaluation is needed. (fwiw, I tried a pre-release 4.1.2 compiler, and it still choked... I didn't even look, so salt to taste) -Mike ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2006-10-18 13:59 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2006-10-13 0:49 Major slab mem leak with 2.6.17 / GCC 4.1.1 nmeyers 2006-10-13 5:56 ` Pekka Enberg 2006-10-13 11:59 ` Catalin Marinas 2006-10-15 7:59 ` Mike Galbraith 2006-10-15 14:14 ` nmeyers 2006-10-15 17:59 ` Mike Galbraith 2006-10-18 13:59 ` Nathan Meyers 2006-10-16 5:32 ` Mike Galbraith 2006-10-16 8:07 ` Catalin Marinas 2006-10-16 9:08 ` Mike Galbraith 2006-10-16 8:44 ` Catalin Marinas 2006-10-16 9:33 ` Mike Galbraith 2006-10-13 8:25 ` Mike Galbraith 2006-10-13 10:55 ` nmeyers 2006-10-13 21:28 ` Mike Galbraith
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox