From: Stefani Seibold <stefani@seibold.net>
To: David Howells <dhowells@redhat.com>
Cc: torvalds@osdl.org, akpm@linux-foundation.org, vapier@gentoo.org,
lethal@linux-sh.org, linux-kernel@vger.kernel.org,
uclinux-dev@uclinux.org, Robin Getz <rgetz@blackfin.uclinux.org>
Subject: Re: [PATCH 2/6] NOMMU: Provide per-task stack usage through /proc for NOMMU
Date: Thu, 17 Dec 2009 08:21:12 +0100 [thread overview]
Message-ID: <1261034472.31163.2.camel@wall-e> (raw)
In-Reply-To: <20091216235603.4310.71243.stgit@warthog.procyon.org.uk>
Am Mittwoch, den 16.12.2009, 23:56 +0000 schrieb David Howells:
> Make it possible to get the per-task stack usage through /proc on a NOMMU
> system. The MMU-mode routine can't be used because walk_page_range() doesn't
> work on NOMMU.
>
> It can be tested to show the stack usages of non-kernel-thread processes:
>
> # grep "Stack usage:" /proc/*/status | grep -v "0 kB"
> /proc/1/status:Stack usage: 2 kB
> /proc/57/status:Stack usage: 3 kB
> /proc/58/status:Stack usage: 1 kB
> /proc/59/status:Stack usage: 3 kB
> /proc/60/status:Stack usage: 5 kB
> /proc/self/status:Stack usage: 1 kB
>
> I've only tested it with ELF-FDPIC, though it should work with FLAT too.
>
> Signed-off-by: David Howells <dhowells@redhat.com>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
> Cc: Stefani Seibold <stefani@seibold.net>
> Cc: Paul Mundt <lethal@linux-sh.org>
> Cc: Robin Getz <rgetz@blackfin.uclinux.org>
Acked-by: stefani@seibold.net
> ---
>
> fs/proc/array.c | 20 +++++++++++++++++---
> 1 files changed, 17 insertions(+), 3 deletions(-)
>
>
> diff --git a/fs/proc/array.c b/fs/proc/array.c
> index 4badde1..c67251e 100644
> --- a/fs/proc/array.c
> +++ b/fs/proc/array.c
> @@ -387,8 +387,7 @@ static inline unsigned long get_stack_usage_in_bytes(struct vm_area_struct *vma,
> return ss.usage;
> }
>
> -static inline void task_show_stack_usage(struct seq_file *m,
> - struct task_struct *task)
> +static void task_show_stack_usage(struct seq_file *m, struct task_struct *task)
> {
> struct vm_area_struct *vma;
> struct mm_struct *mm = get_task_mm(task);
> @@ -404,9 +403,24 @@ static inline void task_show_stack_usage(struct seq_file *m,
> mmput(mm);
> }
> }
> -#else
> +#else /* CONFIG_MMU */
> +/*
> + * Calculate the size of a NOMMU process's stack
> + */
> static void task_show_stack_usage(struct seq_file *m, struct task_struct *task)
> {
> + unsigned long sp, base, usage;
> +
> + base = task->stack_start;
> + sp = KSTK_ESP(task);
> +
> +#ifdef CONFIG_STACK_GROWSUP
> + usage = sp - base;
> +#else
> + usage = base - sp;
> +#endif
> +
> + seq_printf(m, "Stack usage:\t%lu kB\n", (usage + 1023) >> 10);
> }
> #endif /* CONFIG_MMU */
>
>
next prev parent reply other threads:[~2009-12-17 7:21 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-16 23:55 [PATCH 1/6] NOMMU: Optimise away the {dac_,}mmap_min_addr tests David Howells
2009-12-16 23:56 ` [PATCH 2/6] NOMMU: Provide per-task stack usage through /proc for NOMMU David Howells
2009-12-17 7:21 ` Stefani Seibold [this message]
2009-12-16 23:56 ` [PATCH 3/6] FDPIC: Respect PT_GNU_STACK exec protection markings when creating NOMMU stack David Howells
2009-12-16 23:56 ` [PATCH 4/6] NOMMU: Avoiding duplicate icache flushes of shared maps David Howells
2009-12-16 23:56 ` [PATCH 5/6] NOMMU: Use copy_*_user_page() in access_process_vm() David Howells
2009-12-16 23:56 ` [PATCH 6/6] NOMMU: ramfs: Drop unused local var David Howells
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=1261034472.31163.2.camel@wall-e \
--to=stefani@seibold.net \
--cc=akpm@linux-foundation.org \
--cc=dhowells@redhat.com \
--cc=lethal@linux-sh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rgetz@blackfin.uclinux.org \
--cc=torvalds@osdl.org \
--cc=uclinux-dev@uclinux.org \
--cc=vapier@gentoo.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