From: Christoph Lameter Date: Wed, 24 Aug 2011 23:46:56 +0000 (+1000) Subject: Add comments to explain the page statistics field in the mm_struct. X-Git-Tag: next-20110921~1^2~79 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=81ac58b6451f9379001cd92f190b3896326a5d75;p=karo-tx-linux.git Add comments to explain the page statistics field in the mm_struct. Signed-off-by: Christoph Lameter Signed-off-by: Andrew Morton --- diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 1b699460aea3..e0f853f95729 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -293,8 +293,15 @@ struct mm_struct { unsigned long hiwater_rss; /* High-watermark of RSS usage */ unsigned long hiwater_vm; /* High-water virtual memory usage */ - unsigned long total_vm, locked_vm, pinned_vm, shared_vm, exec_vm; - unsigned long stack_vm, reserved_vm, def_flags, nr_ptes; + unsigned long total_vm; /* Total pages mapped */ + unsigned long locked_vm /* Pages that have PG_mlocked set */ + unsigned long pinned_vm; /* Refcount permanently increased */ + unsigned long shared_vm; /* Shared pages (files) */ + unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE */ + unsigned long stack_vm; /* VM_GROWSUP/DOWN */ + unsigned long reserved_vm; /* VM_RESERVED|VM_IO pages */ + unsigned long def_flags; + unsigned long nr_ptes; /* Page table pages */ unsigned long start_code, end_code, start_data, end_data; unsigned long start_brk, brk, start_stack; unsigned long arg_start, arg_end, env_start, env_end;