linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v8 0/6] ksm: support tracking KSM-placed zero-pages
@ 2023-05-22 10:42 yang.yang29
       [not found] ` <20230522104908.3999-1-yang.yang29@zte.com.cn>
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: yang.yang29 @ 2023-05-22 10:42 UTC (permalink / raw)
  To: akpm, david
  Cc: imbrenda, linux-kernel, linux-mm, ran.xiaokai, xu.xin.sc,
	xu.xin16, yang.yang29, jiang.xuexin

From: xu xin <xu.xin16@zte.com.cn>

The core idea of this patch set is to enable users to perceive the number
of any pages merged by KSM, regardless of whether use_zero_page switch has
been turned on, so that users can know how much free memory increase is
really due to their madvise(MERGEABLE) actions. But the problem is, when
enabling use_zero_pages, all empty pages will be merged with kernel zero
pages instead of with each other as use_zero_pages is disabled, and then
these zero-pages are no longer monitored by KSM.

The motivations to do this is seen at:
https://lore.kernel.org/lkml/202302100915227721315@zte.com.cn/

In one word, we hope to implement the support for KSM-placed zero pages
tracking without affecting the feature of use_zero_pages, so that app
developer can also benefit from knowing the actual KSM profit by getting
KSM-placed zero pages to optimize applications eventually when
/sys/kernel/mm/ksm/use_zero_pages is enabled.

Change log
----------
v7->v8:
(1) Since [1] which fix the bug of pte_mkdirty on sparc64 that makes pte
    writable, then we can remove the architechture restrictions of our
	features.
(2) Improve the scheme of update ksm_zero_pages: add the handling case when
    khugepaged replaces a shared zeropage by a THP. 

[1] https://lore.kernel.org/all/20230411141529.428991-2-david@redhat.com/

v6->v7:
This is an all-newed version which is different from v6 which relys on KSM's
rmap_item. The patch series don't rely on rmap_item but pte_dirty, so the
general handling of tracking KSM-placed zero-pages is simplified a lot.

For safety, we restrict this feature only to the tested and known-working
architechtures (ARM, ARM64, and X86) fow now.

xu xin (6):
  ksm: support unsharing KSM-placed zero pages
  ksm: count all zero pages placed by KSM
  ksm: add ksm zero pages for each process
  ksm: add documentation for ksm zero pages
  ksm: update the calculation of KSM profit
  selftest: add a testcase of ksm zero pages

 Documentation/admin-guide/mm/ksm.rst              | 26 +++++---
 fs/proc/base.c                                    |  1 +
 include/linux/ksm.h                               | 25 ++++++++
 include/linux/mm_types.h                          |  9 ++-
 mm/khugepaged.c                                   |  3 +
 mm/ksm.c                                          | 19 +++++-
 mm/memory.c                                       |  7 ++-
 tools/testing/selftests/mm/ksm_functional_tests.c | 75 +++++++++++++++++++++++
 8 files changed, 152 insertions(+), 13 deletions(-)

-- 
2.15.2


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

end of thread, other threads:[~2023-05-23 14:12 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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   ` [PATCH v8 5/6] ksm: update the calculation of KSM profit David Hildenbrand
     [not found] ` <20230522105433.4277-1-yang.yang29@zte.com.cn>
2023-05-23 10:15   ` [PATCH v8 6/6] selftest: add a testcase of ksm zero pages David Hildenbrand

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