[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20181210201036.GC2342@uranus.lan>
Date: Mon, 10 Dec 2018 23:10:36 +0300
From: Cyrill Gorcunov <gorcunov@...il.com>
To: Kirill Tkhai <ktkhai@...tuozzo.com>
Cc: akpm@...ux-foundation.org, mhocko@...e.com, linux-mm@...ck.org,
linux-kernel@...r.kernel.org, gorcunov@...tuozzo.com
Subject: Re: [PATCH] ksm: React on changing "sleep_millisecs" parameter faster
On Mon, Dec 10, 2018 at 07:06:18PM +0300, Kirill Tkhai wrote:
> ksm thread unconditionally sleeps in ksm_scan_thread()
> after each iteration:
>
> schedule_timeout_interruptible(
> msecs_to_jiffies(ksm_thread_sleep_millisecs))
>
> The timeout is configured in /sys/kernel/mm/ksm/sleep_millisecs.
>
> In case of user writes a big value by a mistake, and the thread
> enters into schedule_timeout_interruptible(), it's not possible
> to cancel the sleep by writing a new smaler value; the thread
> is just sleeping till timeout expires.
>
> The patch fixes the problem by waking the thread each time
> after the value is updated.
>
> This also may be useful for debug purposes; and also for userspace
> daemons, which change sleep_millisecs value in dependence of
> system load.
>
> Signed-off-by: Kirill Tkhai <ktkhai@...tuozzo.com>
Kirill, can we rather reuse @ksm_thread variable from ksm_init
(by moving it to static file level variable). Also wakening up
unconditionally on write looks somehow suspicious to me
though I don't have a precise argument against.
Powered by blists - more mailing lists