lkml.org 
[lkml]   [2018]   [Nov]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH V3] KSM: allow dedup all tasks memory
On 18-11-13 02:13:44, Timofey Titovets wrote:
> From: Timofey Titovets <nefelim4ag@gmail.com>
>
> ksm by default working only on memory that added by
> madvise().
>
> And only way get that work on other applications:
> * Use LD_PRELOAD and libraries
> * Patch kernel
>
> Lets use kernel task list and add logic to import VMAs from tasks.
>
> That behaviour controlled by new attributes:
> * mode:
> I try mimic hugepages attribute, so mode have two states:
> * madvise - old default behaviour
> * always [new] - allow ksm to get tasks vma and
> try working on that.
> * seeker_sleep_millisecs:
> Add pauses between imports tasks VMA
>
> For rate limiting proporses and tasklist locking time,
> ksm seeker thread only import VMAs from one task per loop.
>
> Some numbers from different not madvised workloads.
> Formulas:
> Percentage ratio = (pages_sharing - pages_shared)/pages_unshared
> Memory saved = (pages_sharing - pages_shared)*4/1024 MiB
> Memory used = free -h
>
> * Name: My working laptop
> Description: Many different chrome/electron apps + KDE
> Ratio: 5%
> Saved: ~100 MiB
> Used: ~2000 MiB
>
> * Name: K8s test VM
> Description: Some small random running docker images
> Ratio: 40%
> Saved: ~160 MiB
> Used: ~920 MiB
>
> * Name: Ceph test VM
> Description: Ceph Mon/OSD, some containers
> Ratio: 20%
> Saved: ~60 MiB
> Used: ~600 MiB
>
> * Name: BareMetal K8s backend server
> Description: Different server apps in containers C, Java, GO & etc
> Ratio: 72%
> Saved: ~5800 MiB
> Used: ~35.7 GiB
>
> * Name: BareMetal K8s processing server
> Description: Many instance of one CPU intensive application
> Ratio: 55%
> Saved: ~2600 MiB
> Used: ~28.0 GiB
>
> * Name: BareMetal Ceph node
> Description: Only OSD storage daemons running
> Raio: 2%
> Saved: ~190 MiB
> Used: ~11.7 GiB
>
> Changes:
> v1 -> v2:
> * Rebase on v4.19.1 (must also apply on 4.20-rc2+)
> v2 -> v3:
> * Reformat patch description
> * Rename mode normal to madvise
> * Add some memory numbers
> * Fix checkpatch.pl warnings
> * Separate ksm vma seeker to another kthread
> * Fix: "BUG: scheduling while atomic: ksmd"
> by move seeker to another thread
>
> Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
> CC: Matthew Wilcox <willy@infradead.org>
> CC: linux-mm@kvack.org
> CC: linux-doc@vger.kernel.org
> ---
> Documentation/admin-guide/mm/ksm.rst | 15 ++
> mm/ksm.c | 215 +++++++++++++++++++++++----
> 2 files changed, 198 insertions(+), 32 deletions(-)
>
> diff --git a/Documentation/admin-guide/mm/ksm.rst b/Documentation/admin-guide/mm/ksm.rst
> index 9303786632d1..7cffd47f9b38 100644
> --- a/Documentation/admin-guide/mm/ksm.rst
> +++ b/Documentation/admin-guide/mm/ksm.rst
> @@ -116,6 +116,21 @@ run
> Default: 0 (must be changed to 1 to activate KSM, except if
> CONFIG_SYSFS is disabled)
>
> +mode
> + * set always to allow ksm deduplicate memory of every process
> + * set madvise to use only madvised memory
> +
> + Default: madvise (dedupulicate only madvised memory as in
> + earlier releases)
> +
> +seeker_sleep_millisecs
> + how many milliseconds ksmd task seeker should sleep try another
> + task.
> + e.g. ``echo 1000 > /sys/kernel/mm/ksm/seeker_sleep_millisecs``
> +
> + Default: 1000 (chosen for rate limit purposes)
> +
> +
> use_zero_pages
> specifies whether empty pages (i.e. allocated pages that only
> contain zeroes) should be treated specially. When set to 1,
> diff --git a/mm/ksm.c b/mm/ksm.c
> index 5b0894b45ee5..1a03b28b6288 100644
> --- a/mm/ksm.c
> +++ b/mm/ksm.c
> @@ -273,6 +273,9 @@ static unsigned int ksm_thread_pages_to_scan = 100;
> /* Milliseconds ksmd should sleep between batches */
> static unsigned int ksm_thread_sleep_millisecs = 20;
>
> +/* Milliseconds ksmd seeker should sleep between runs */
> +static unsigned int ksm_thread_seeker_sleep_millisecs = 1000;
> +
> /* Checksum of an empty (zeroed) page */
> static unsigned int zero_checksum __read_mostly;
>
> @@ -295,7 +298,12 @@ static int ksm_nr_node_ids = 1;
> static unsigned long ksm_run = KSM_RUN_STOP;
> static void wait_while_offlining(void);
>
> +#define KSM_MODE_MADVISE 0
> +#define KSM_MODE_ALWAYS 1
> +static unsigned long ksm_mode = KSM_MODE_MADVISE;
> +
> static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait);
> +static DECLARE_WAIT_QUEUE_HEAD(ksm_seeker_thread_wait);
> static DEFINE_MUTEX(ksm_thread_mutex);
> static DEFINE_SPINLOCK(ksm_mmlist_lock);
>
> @@ -303,6 +311,11 @@ static DEFINE_SPINLOCK(ksm_mmlist_lock);
> sizeof(struct __struct), __alignof__(struct __struct),\
> (__flags), NULL)
>
> +static inline int ksm_mode_always(void)
> +{
> + return (ksm_mode == KSM_MODE_ALWAYS);
> +}
> +
> static int __init ksm_slab_init(void)
> {
> rmap_item_cache = KSM_KMEM_CACHE(rmap_item, 0);
> @@ -2389,6 +2402,106 @@ static int ksmd_should_run(void)
> return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.mm_list);
> }
>
> +
> +static int ksm_enter(struct mm_struct *mm, unsigned long *vm_flags)
> +{
> + int err;
> +
> + if (*vm_flags & (VM_MERGEABLE | VM_SHARED | VM_MAYSHARE |
> + VM_PFNMAP | VM_IO | VM_DONTEXPAND |
> + VM_HUGETLB | VM_MIXEDMAP))
> + return 0;
> +
> +#ifdef VM_SAO
> + if (*vm_flags & VM_SAO)
> + return 0;
> +#endif
> +#ifdef VM_SPARC_ADI
> + if (*vm_flags & VM_SPARC_ADI)
> + return 0;
> +#endif
> + if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
> + err = __ksm_enter(mm);
> + if (err)
> + return err;
> + }
> +
> + *vm_flags |= VM_MERGEABLE;
> +
> + return 0;
> +}
> +
> +/*
> + * Register all vmas for all processes in the system with KSM.
> + * Note that every call to ksm_, for a given vma, after the first
> + * does nothing but set flags.
> + */
> +void ksm_import_task_vma(struct task_struct *task)
> +{
> + struct vm_area_struct *vma;
> + struct mm_struct *mm;
> + int error;
> +
> + mm = get_task_mm(task);
> + if (!mm)
> + return;
> + down_write(&mm->mmap_sem);
> + vma = mm->mmap;
> + while (vma) {
> + error = ksm_enter(vma->vm_mm, &vma->vm_flags);
> + vma = vma->vm_next;
> + }
> + up_write(&mm->mmap_sem);
> + mmput(mm);
> +}
> +
> +static int ksm_seeker_thread(void *nothing)

Is it really necessary to have an extra thread in ksm just to add vma's
for scanning? Can we do it right from the scanner thread? Also, may be
it is better to add vma's at their creation time when KSM_MODE_ALWAYS is
enabled?

Thank you,
Pasha

\
 
 \ /
  Last update: 2018-11-13 03:26    [W:0.094 / U:0.832 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site