From: David Hildenbrand <david@redhat.com>
To: Yang Yang <yang.yang29@zte.com.cn>, akpm@linux-foundation.org
Cc: imbrenda@linux.ibm.com, jiang.xuexin@zte.com.cn,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
ran.xiaokai@zte.com.cn, xu.xin.sc@gmail.com, xu.xin16@zte.com.cn,
Stefan Roesch <shr@devkernel.io>
Subject: Re: [PATCH v8 5/6] ksm: update the calculation of KSM profit
Date: Tue, 23 May 2023 12:01:37 +0200 [thread overview]
Message-ID: <04d3ffe2-46ce-db30-8f1b-cb05cd21d328@redhat.com> (raw)
In-Reply-To: <20230522105402.4225-1-yang.yang29@zte.com.cn>
On 22.05.23 12:54, Yang Yang wrote:
> From: xu xin <xu.xin16@zte.com.cn>
>
I suggest changing the subject to
"ksm: consider KSM-placed zeropages when calculating KSM profit"
> When use_zero_pages is enabled, the calculation of ksm profit is not
> correct because ksm zero pages is not counted in. So update the
> calculation of KSM profit including the documentation.
>
> Signed-off-by: xu xin <xu.xin16@zte.com.cn>
> Cc: Xiaokai Ran <ran.xiaokai@zte.com.cn>
> Cc: Yang Yang <yang.yang29@zte.com.cn>
> Cc: Jiang Xuexin <jiang.xuexin@zte.com.cn>
> Cc: Claudio Imbrenda <imbrenda@linux.ibm.com>
> Cc: David Hildenbrand <david@redhat.com>
> ---
> Documentation/admin-guide/mm/ksm.rst | 18 +++++++++++-------
> mm/ksm.c | 2 +-
> 2 files changed, 12 insertions(+), 8 deletions(-)
>
> diff --git a/Documentation/admin-guide/mm/ksm.rst b/Documentation/admin-guide/mm/ksm.rst
> index 019dc40a0d3c..dde7c152f0ae 100644
> --- a/Documentation/admin-guide/mm/ksm.rst
> +++ b/Documentation/admin-guide/mm/ksm.rst
> @@ -204,21 +204,25 @@ several times, which are unprofitable memory consumed.
> 1) How to determine whether KSM save memory or consume memory in system-wide
> range? Here is a simple approximate calculation for reference::
>
> - general_profit =~ pages_sharing * sizeof(page) - (all_rmap_items) *
> + general_profit =~ ksm_saved_pages * sizeof(page) - (all_rmap_items) *
> sizeof(rmap_item);
>
> - where all_rmap_items can be easily obtained by summing ``pages_sharing``,
> - ``pages_shared``, ``pages_unshared`` and ``pages_volatile``.
> + where ksm_saved_pages equals to the sum of ``pages_sharing`` +
> + ``ksm_zero_pages`` of the system, and all_rmap_items can be easily
> + obtained by summing ``pages_sharing``, ``pages_shared``, ``pages_unshared``
> + and ``pages_volatile``.
>
> 2) The KSM profit inner a single process can be similarly obtained by the
> following approximate calculation::
>
> - process_profit =~ ksm_merging_pages * sizeof(page) -
> + process_profit =~ ksm_saved_pages * sizeof(page) -
> ksm_rmap_items * sizeof(rmap_item).
>
> - where ksm_merging_pages is shown under the directory ``/proc/<pid>/``,
> - and ksm_rmap_items is shown in ``/proc/<pid>/ksm_stat``. The process profit
> - is also shown in ``/proc/<pid>/ksm_stat`` as ksm_process_profit.
> + where ksm_saved_pages equals to the sum of ``ksm_merging_pages`` and
> + ``ksm_zero_pages``, both of which are shown under the directory
> + ``/proc/<pid>/ksm_stat``, and ksm_rmap_items is alos shown in
s/alos/also/
> + ``/proc/<pid>/ksm_stat``. The process profit is also shown in
> + ``/proc/<pid>/ksm_stat`` as ksm_process_profit.
>
> From the perspective of application, a high ratio of ``ksm_rmap_items`` to
> ``ksm_merging_pages`` means a bad madvise-applied policy, so developers or
> diff --git a/mm/ksm.c b/mm/ksm.c
> index 4e510f5c5938..d23a240c2519 100644
> --- a/mm/ksm.c
> +++ b/mm/ksm.c
> @@ -3085,7 +3085,7 @@ static void wait_while_offlining(void)
> #ifdef CONFIG_PROC_FS
> long ksm_process_profit(struct mm_struct *mm)
> {
> - return mm->ksm_merging_pages * PAGE_SIZE -
> + return (long)(mm->ksm_merging_pages + mm->ksm_zero_pages) * PAGE_SIZE -
> mm->ksm_rmap_items * sizeof(struct ksm_rmap_item);
> }
> #endif /* CONFIG_PROC_FS */
Apart from that LGTM. CCing Stefan R.
--
Thanks,
David / dhildenb
next prev parent reply other threads:[~2023-05-23 10:01 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-22 10:42 [PATCH v8 0/6] ksm: support tracking KSM-placed zero-pages yang.yang29
[not found] ` <20230522104908.3999-1-yang.yang29@zte.com.cn>
2023-05-23 9:41 ` [PATCH v8 1/6] ksm: support unsharing KSM-placed zero pages David Hildenbrand
2023-05-23 13:55 ` xu xin
2023-05-23 13:57 ` xu xin
2023-05-23 14:00 ` David Hildenbrand
2023-05-23 14:11 ` xu xin
[not found] ` <20230522105229.4066-1-yang.yang29@zte.com.cn>
2023-05-23 9:47 ` [PATCH v8 2/6] ksm: count all zero pages placed by KSM David Hildenbrand
2023-05-23 9:51 ` David Hildenbrand
[not found] ` <20230522105305.4126-1-yang.yang29@zte.com.cn>
2023-05-23 9:55 ` [PATCH v8 3/6] ksm: add ksm zero pages for each process David Hildenbrand
[not found] ` <20230522105335.4176-1-yang.yang29@zte.com.cn>
2023-05-23 9:58 ` [PATCH v8 4/6] ksm: add documentation for ksm zero pages David Hildenbrand
[not found] ` <20230522105402.4225-1-yang.yang29@zte.com.cn>
2023-05-23 10:01 ` David Hildenbrand [this message]
[not found] ` <20230522105433.4277-1-yang.yang29@zte.com.cn>
2023-05-23 10:15 ` [PATCH v8 6/6] selftest: add a testcase of " David Hildenbrand
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=04d3ffe2-46ce-db30-8f1b-cb05cd21d328@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=imbrenda@linux.ibm.com \
--cc=jiang.xuexin@zte.com.cn \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ran.xiaokai@zte.com.cn \
--cc=shr@devkernel.io \
--cc=xu.xin.sc@gmail.com \
--cc=xu.xin16@zte.com.cn \
--cc=yang.yang29@zte.com.cn \
/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