From: "Américo Wang" <xiyou.wangcong@gmail.com>
To: steve@digidescorp.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] procfs: Use proper units for noMMU statm
Date: Sat, 14 Nov 2009 12:41:53 +0800 [thread overview]
Message-ID: <20091114044153.GB2416@hack> (raw)
In-Reply-To: <1258163534-3617-1-git-send-email-steve@digidescorp.com>
On Fri, Nov 13, 2009 at 07:52:14PM -0600, steve@digidescorp.com wrote:
>On no-MMU systems, sizes reported in /proc/n/statm have units of bytes.
>Per Documentation/filesystems/proc.txt, these values should be in pages.
>
>Signed-off-by: Steven J. Magnani <steve@digidescorp.com>
>---
>diff -uprN a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c
>--- a/fs/proc/task_nommu.c 2009-11-13 16:48:14.000000000 -0600
>+++ b/fs/proc/task_nommu.c 2009-11-13 16:51:09.000000000 -0600
>@@ -110,8 +110,11 @@ int task_statm(struct mm_struct *mm, int
> }
> }
>
>- size += (*text = mm->end_code - mm->start_code);
>- size += (*data = mm->start_stack - mm->start_data);
>+ size >>= PAGE_SHIFT;
>+ *text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK))
>+ >> PAGE_SHIFT;
>+ *data = (mm->start_stack - mm->start_data) >> PAGE_SHIFT;
Are '->start_stack' and '->start_data' already page aligned on NOMMU arch?
If yes, this patch looks good.
>+ size += *text + *data;
> up_read(&mm->mmap_sem);
> *resident = size;
> return size;
>
>--
>To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at http://vger.kernel.org/majordomo-info.html
>Please read the FAQ at http://www.tux.org/lkml/
--
Live like a child, think like the god.
next prev parent reply other threads:[~2009-11-14 4:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-14 1:52 [PATCH] procfs: Use proper units for noMMU statm steve
2009-11-14 4:41 ` Américo Wang [this message]
2009-11-16 14:47 ` Steven J. Magnani
2009-11-16 14:50 ` [PATCH v2] " steve
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=20091114044153.GB2416@hack \
--to=xiyou.wangcong@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=steve@digidescorp.com \
/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.