2015-04-24 07:45:14

by Chen Hanxiao

[permalink] [raw]
Subject: [PATCH v2] docs: add VmPMD description in proc

commit dc6c9a35b66b ("mm: account pmd page tables to the process")
add VmPMD in /proc/PID/status.
This patch add a description in proc.txt for it.

cc: Kirill A. Shutemov <[email protected]>
Signed-off-by: Chen Hanxiao <[email protected]>
---
v2: change description of VmPMD as Kirill's comment

Documentation/filesystems/proc.txt | 1 +
1 file changed, 1 insertion(+)

diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt
index c3b6b30..e8aba97 100644
--- a/Documentation/filesystems/proc.txt
+++ b/Documentation/filesystems/proc.txt
@@ -235,6 +235,7 @@ Table 1-2: Contents of the status files (as of 3.20.0)
VmExe size of text segment
VmLib size of shared library code
VmPTE size of page table entries
+ VmPMD size of second level page tables
VmSwap size of swap usage (the number of referred swapents)
Threads number of threads
SigQ number of signals queued/max. number for queue
--
2.1.0


2015-04-24 08:35:49

by Kirill A. Shutemov

[permalink] [raw]
Subject: Re: [PATCH v2] docs: add VmPMD description in proc

On Fri, Apr 24, 2015 at 03:44:17AM -0400, Chen Hanxiao wrote:
> commit dc6c9a35b66b ("mm: account pmd page tables to the process")
> add VmPMD in /proc/PID/status.
> This patch add a description in proc.txt for it.
>
> cc: Kirill A. Shutemov <[email protected]>
> Signed-off-by: Chen Hanxiao <[email protected]>

Acked-by: Kirill A. Shutemov <[email protected]>

> ---
> v2: change description of VmPMD as Kirill's comment
>
> Documentation/filesystems/proc.txt | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt
> index c3b6b30..e8aba97 100644
> --- a/Documentation/filesystems/proc.txt
> +++ b/Documentation/filesystems/proc.txt
> @@ -235,6 +235,7 @@ Table 1-2: Contents of the status files (as of 3.20.0)
> VmExe size of text segment
> VmLib size of shared library code
> VmPTE size of page table entries
> + VmPMD size of second level page tables
> VmSwap size of swap usage (the number of referred swapents)
> Threads number of threads
> SigQ number of signals queued/max. number for queue
> --
> 2.1.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/

--
Kirill A. Shutemov

2015-05-07 15:57:38

by Jonathan Corbet

[permalink] [raw]
Subject: Re: [PATCH v2] docs: add VmPMD description in proc

On Fri, 24 Apr 2015 03:44:17 -0400
Chen Hanxiao <[email protected]> wrote:

> commit dc6c9a35b66b ("mm: account pmd page tables to the process")
> add VmPMD in /proc/PID/status.
> This patch add a description in proc.txt for it.

Applied to the docs tree, thanks.

jon