From: "Pádraig Brady" <P@draigBrady.com>
To: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: Lauri Lubi <lauri@lubi.se>
Subject: negative anon_rss?
Date: Wed, 15 Nov 2006 00:30:15 +0000 [thread overview]
Message-ID: <455A5F97.1070509@draigBrady.com> (raw)
Sorry for not sending this to linux-mm,
but I can't subscribe at present? Anyway...
I wrote the following script to try and accurately determine
how much RAM a particular program uses:
http://www.pixelbeat.org/scripts/ps_mem.py
A user reported an issue on debian with kernel 2.6.8-2-386
where many processes were being reported as using
a negative amount of memory.
I asked him to run the following:
(
echo total rss shared trs - drs -
for pid in `pidof apache2`; do
cat /proc/$pid/statm
done
) | column -t
the output of which was:
total rss shared trs - drs -
6580 2306 5273 95 0 6485 0
6580 2313 5273 95 0 6485 0
6119 1717 5269 95 0 6024 0
6630 2371 5273 95 0 6535 0
6735 2503 5273 95 0 6640 0
6773 2546 5273 95 0 6678 0
5845 1146 5198 95 0 5750 0
Notice the large values for the shared column.
Also notice that the shared column is larger than rss!?
I had assumed that shared was a subset of rss from
the following (pseudo) code from fs/proc/task_mmu.c::task_statm()
*total = mm->total_em
*shared = get_mm_counter(mm, file_rss)
*rss = *shared + get_mm_counter(mm, anon_rss)
*trs = mm->end_code - mm->start_code
*drs = mm->total_vm - mm->shared_vm
Therefore anon_rss must be negative in the kernel?
So there is a mismatch between pages being marked
as anonymous and anon_rss being updated appropriately?
cheers,
Pádraig.
next reply other threads:[~2006-11-15 0:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-15 0:30 Pádraig Brady [this message]
2006-11-15 14:45 ` Hugh Dickins
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=455A5F97.1070509@draigBrady.com \
--to=p@draigbrady.com \
--cc=lauri@lubi.se \
--cc=linux-kernel@vger.kernel.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
Powered by JetHome