[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87eiwdn15a.fsf@basil.nowhere.org>
Date: Tue, 31 Mar 2009 17:49:05 +0200
From: Andi Kleen <andi@...stfloor.org>
To: Stefani Seibold <stefani@...bold.net>
Cc: linux-kernel <linux-kernel@...r.kernel.org>,
linux-mm <linux-mm@...ck.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Ingo Molnar <mingo@...e.hu>, Joerg Engel <joern@...fs.org>
Subject: Re: Detailed Stack Information Patch [0/3]
Stefani Seibold <stefani@...bold.net> writes:
>
> - Get out of virtual memory by creating a lot of threads
> (f.e. the developer did assign each of them the default size)
The application just fails then? I don't think that needs
a new monitoring tool.
> - Misuse the thread stack for big temporary data buffers
That would be better checked for at compile time
(except for alloca, but that is quite rare)
> - Thread stack overruns
Your method would be racy at best to determine this because
you don't keep track of the worst case, only the current case.
So e.g. if you monitoring app checks once per second the stack
could overflow between your monitoring intervals, but already
have bounced back before the checker comes in.
gcc has support to generate stack overflow checking code,
that would be more reliable. Alternatively you could keep
track of consumption in the VMA that has the stack, but
that can't handle very large jumps (like f() { char x[1<<30]; } )
The later can only be handled well by the compiler.
-Andi
--
ak@...ux.intel.com -- Speaking for myself only.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists