All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jörn Engel" <joern@logfs.org>
To: Stefani Seibold <stefani@seibold.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: Detailed Stack Information Patch [0/3]
Date: Thu, 22 Jan 2009 20:41:26 +0100	[thread overview]
Message-ID: <20090122194126.GA5352@logfs.org> (raw)
In-Reply-To: <1232446597.784.15.camel@matrix>

On Tue, 20 January 2009 11:16:37 +0100, Stefani Seibold wrote:
> 
> this is a patch which give you a better overview of the userland
> application stack usage, especially for embedded linux.
> 
> Currently you are only able to dump the main process/thread stack usage
> which is showed in proc/pid/status by the "VmStk" Value. But you get no
> information about the consumed stack memory of the the threads.
>
> [...]
> 
> This patch is against 2.6.28.1. The patch is cpu independent, so it
> should work on all linux supported architectures, it was tested under
> x86 and powerpc. Also there is not dependency a library: glibc, uclibc
> and all other should work.
> 
> I hope you like it and want ask what is necessary for inclusion into the
> main stream kernel or linux-next? If you have ideas how to do things in
> a better way, please let me know.

First goal would be to get people interested.  Why would Joe
Kernelhacker care about this, what problem would it solve for him?  Next
goal is to prove to akpm that the solved problems are worth the
maintenance burden this code brings.

It would be nice to have diffstat added to each patch to give people
a quick overview.  More importantly, the number of #ifdef's in the
patches may raise a red flag.  You should try to remove them from common
code and have a single one in the headers:

#ifdef CONFIG_NEW_FEATURE

void handle_this(int foo, long bar);

#else

static inline void handle_this(int foo, long bar)
{
}
#endif

Not sure what else to say.  I'm still wondering whether it will solve a
problem for me.

Jörn

-- 
Joern's library part 4:
http://www.paulgraham.com/spam.html

  reply	other threads:[~2009-01-22 19:41 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-20 10:16 Detailed Stack Information Patch [0/3] Stefani Seibold
2009-01-22 19:41 ` Jörn Engel [this message]
2009-01-22 21:39   ` Stefani Seibold
2009-01-23  9:20     ` Jörn Engel
  -- strict thread matches above, loose matches on Subject: below --
2009-03-31 14:58 Stefani Seibold
2009-03-31 14:58 ` Stefani Seibold
2009-03-31 15:49 ` Andi Kleen
2009-03-31 15:49   ` Andi Kleen
2009-03-31 18:22   ` Stefani Seibold
2009-03-31 18:22     ` Stefani Seibold
2009-03-31 19:02     ` Jörn Engel
2009-03-31 19:02       ` Jörn Engel
2009-03-31 20:30     ` Andi Kleen
2009-03-31 20:30       ` Andi Kleen
2009-03-31 21:25       ` Stefani Seibold
2009-03-31 21:25         ` Stefani Seibold

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=20090122194126.GA5352@logfs.org \
    --to=joern@logfs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stefani@seibold.net \
    /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 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.