From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AIpwx49en6Pz/57WD1VqafSuqap4yN/oxk8HhVjsO5vLiV9CGE/xUmx0K7eTvrZIEGPIAmWNv3k3 ARC-Seal: i=1; a=rsa-sha256; t=1524405830; cv=none; d=google.com; s=arc-20160816; b=smHLL8UPbKJ0AqNolU1+hnpVkob9tA4itxWmsU2OVW6VhM6dIbbkmqqDOIuKUUK1Lh ujcsnRVkDxn8pqyFE0sWcKkLtlr3IXBc9gH3uYOVsU/+ykzONlzcr2Pt7NPyMMcqdNjL 1SitZOwwJTXud0hIEzYMXzbNx1N26qxn5nCsMmjIjrFfAbgRi2zB7a1RPvcSwzTJrgvJ FOVAX0VRphUrxsfq1TYdXS/Pf0gBXYsnK7cp8zBBVNAGf7POR/7E3464zpx3YrdmtC8/ cFMCIrdjzWc+4a3DTmWOaQgqNPGzkVdib6VlRVU/P4tSpAIsM14AATSo0ZWy4+1wrc0f MlVQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=mime-version:user-agent:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=o6MAk6s2FZR08bXSYaF4tAM0uYdvXUEkNpVCrEP3e44=; b=w0VoNwhzyYX+RlhSn3855x8RWK27ioisO5pOWoOvnY962vOyK99lqAJfvc6SF35ZQL u98wsgvKMADQqIImzwXgZhqmyxrf+i0Od/Y7TkSMfmZuEDtFzLWS/lSIZm6BSFBzqRzB 3lMV1CXnFnuOJuCw7vNTUZ1IXlutoT0Qqcm50bcDmFP81K9cBSLAYqoKH5tjo7fpKBaD YIovjKHFuAJwuZ58/rEOZ2aGv6O7FPceAfgkgT6qfCLZM1COI40E22ERBQ4+JSvskj/i i3O9dphOOx7HfS53KyrnKGLdEsxTdY/wCfmvEa8gPiAw2IN+W0JnY/xYcZhO7Mcnd2fK Cvlg== ARC-Authentication-Results: i=1; mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.61.202 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.61.202 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Vlastimil Babka , Pekka Enberg , Christoph Lameter , Joonsoo Kim , David Rientjes , Tejun Heo , Lai Jiangshan , John Stultz , Thomas Gleixner , Stephen Boyd , Andrew Morton , Linus Torvalds Subject: [PATCH 4.14 014/164] mm, slab: reschedule cache_reap() on the same CPU Date: Sun, 22 Apr 2018 15:51:21 +0200 Message-Id: <20180422135135.973461780@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180422135135.400265110@linuxfoundation.org> References: <20180422135135.400265110@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-LABELS: =?utf-8?b?IlxcU2VudCI=?= X-GMAIL-THRID: =?utf-8?q?1598454810628611405?= X-GMAIL-MSGID: =?utf-8?q?1598455368132944395?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Vlastimil Babka commit a9f2a846f0503e7d729f552e3ccfe2279010fe94 upstream. cache_reap() is initially scheduled in start_cpu_timer() via schedule_delayed_work_on(). But then the next iterations are scheduled via schedule_delayed_work(), i.e. using WORK_CPU_UNBOUND. Thus since commit ef557180447f ("workqueue: schedule WORK_CPU_UNBOUND work on wq_unbound_cpumask CPUs") there is no guarantee the future iterations will run on the originally intended cpu, although it's still preferred. I was able to demonstrate this with /sys/module/workqueue/parameters/debug_force_rr_cpu. IIUC, it may also happen due to migrating timers in nohz context. As a result, some cpu's would be calling cache_reap() more frequently and others never. This patch uses schedule_delayed_work_on() with the current cpu when scheduling the next iteration. Link: http://lkml.kernel.org/r/20180411070007.32225-1-vbabka@suse.cz Fixes: ef557180447f ("workqueue: schedule WORK_CPU_UNBOUND work on wq_unbound_cpumask CPUs") Signed-off-by: Vlastimil Babka Acked-by: Pekka Enberg Acked-by: Christoph Lameter Cc: Joonsoo Kim Cc: David Rientjes Cc: Tejun Heo Cc: Lai Jiangshan Cc: John Stultz Cc: Thomas Gleixner Cc: Stephen Boyd Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- mm/slab.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/mm/slab.c +++ b/mm/slab.c @@ -4080,7 +4080,8 @@ next: next_reap_node(); out: /* Set up the next iteration */ - schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC)); + schedule_delayed_work_on(smp_processor_id(), work, + round_jiffies_relative(REAPTIMEOUT_AC)); } #ifdef CONFIG_SLABINFO