public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC] [PATCH] Add more info to /proc/$pid/smaps
@ 2007-10-05 10:42 Maxim Levitsky
  2007-10-05 10:43 ` Maxim Levitsky
  0 siblings, 1 reply; 2+ messages in thread
From: Maxim Levitsky @ 2007-10-05 10:42 UTC (permalink / raw)
  To: linux-kernel

I was trying to write a small application similar to pmap, but more powerful.
During the writing I noticed that there are two things I can't get by parsing /proc/$pid/smaps:

1) amount of anonymous memory in a mapping:

It is easy to get it for shared and anonymous mappings (0 for the former, and whole mapping for the latter)
But it is impossible to get it for private writable file mappings.

It seems that the dirty (Private_Dirty+Shared_Dirty) pages amount should indicate number of anonymous pages in the mapping
but this is not the case.

If a dirty page gets swapped, and then brought back due to read access, it will be marked clean, although it is an anonymous page.

2) amount of swapped memory in a mapping:

Again it seems that I can do (Mapping size - RSS) to get amount of memory swapped, but this isn't true too, since
some memory can be untouched , thus be non-present, and non-swapped.


The patch below adds two fields to /proc/$pid/smaps, that give this information.

Probably even more info will be interesting.
How about adding amount of locked memory, and most importantly map count?
This way I can estimate how 'shared' a process memory really is.

Suggestions are welcome.

Best regards,
	Maxim Levitsky

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-10-05 10:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-05 10:42 [RFC] [PATCH] Add more info to /proc/$pid/smaps Maxim Levitsky
2007-10-05 10:43 ` Maxim Levitsky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox