OSDN Git Service

mm: add a field to store names for private anonymous memory
authorColin Cross <ccross@android.com>
Thu, 27 Jun 2013 00:26:01 +0000 (17:26 -0700)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Thu, 13 Feb 2014 15:50:37 +0000 (23:50 +0800)
commit45f8fed8cb1454a277a7493e49094aab5893016d
treee8fc851d33e2d7d83f910aee2a709219b3cf0a04
parentce67345bd6c65b7271f77f804091624a5189ef41
mm: add a field to store names for private anonymous memory

Userspace processes often have multiple allocators that each do
anonymous mmaps to get memory.  When examining memory usage of
individual processes or systems as a whole, it is useful to be
able to break down the various heaps that were allocated by
each layer and examine their size, RSS, and physical memory
usage.

This patch adds a user pointer to the shared union in
vm_area_struct that points to a null terminated string inside
the user process containing a name for the vma.  vmas that
point to the same address will be merged, but vmas that
point to equivalent strings at different addresses will
not be merged.

Userspace can set the name for a region of memory by calling
prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, start, len, (unsigned long)name);
Setting the name to NULL clears it.

The names of named anonymous vmas are shown in /proc/pid/maps
as [anon:<name>] and in /proc/pid/smaps in a new "Name" field
that is only present for named vmas.  If the userspace pointer
is no longer valid all or part of the name will be replaced
with "<fault>".

The idea to store a userspace pointer to reduce the complexity
within mm (at the expense of the complexity of reading
/proc/pid/mem) came from Dave Hansen.  This results in no
runtime overhead in the mm subsystem other than comparing
the anon_name pointers when considering vma merging.  The pointer
is stored in a union with fieds that are only used on file-backed
mappings, so it does not increase memory usage.

Change-Id: Ie2ffc0967d4ffe7ee4c70781313c7b00cf7e3092
Signed-off-by: Colin Cross <ccross@android.com>
Documentation/filesystems/proc.txt
fs/proc/task_mmu.c
include/linux/mm.h
include/linux/mm_types.h
include/uapi/linux/prctl.h
kernel/sys.c
mm/madvise.c
mm/mempolicy.c
mm/mlock.c
mm/mmap.c
mm/mprotect.c