From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl0-f69.google.com (mail-pl0-f69.google.com [209.85.160.69]) by kanga.kvack.org (Postfix) with ESMTP id A09996B0024 for ; Tue, 10 Apr 2018 16:15:32 -0400 (EDT) Received: by mail-pl0-f69.google.com with SMTP id m6-v6so10224484pln.8 for ; Tue, 10 Apr 2018 13:15:32 -0700 (PDT) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id w64si2293287pgd.176.2018.04.10.13.15.31 for (version=TLS1 cipher=AES128-SHA bits=128/128); Tue, 10 Apr 2018 13:15:31 -0700 (PDT) Subject: Re: [RFC] mm, slab: reschedule cache_reap() on the same CPU References: <20180410081531.18053-1-vbabka@suse.cz> <983c61d1-1444-db1f-65c1-3b519ac4d57b@suse.cz> <20180410195247.GQ3126663@devbig577.frc2.facebook.com> From: Vlastimil Babka Message-ID: Date: Tue, 10 Apr 2018 22:13:33 +0200 MIME-Version: 1.0 In-Reply-To: <20180410195247.GQ3126663@devbig577.frc2.facebook.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Tejun Heo Cc: Christopher Lameter , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Joonsoo Kim , David Rientjes , Pekka Enberg , Lai Jiangshan , John Stultz , Thomas Gleixner , Stephen Boyd On 04/10/2018 09:53 PM, Tejun Heo wrote: > Hello, > > On Tue, Apr 10, 2018 at 09:40:19PM +0200, Vlastimil Babka wrote: >> On 04/10/2018 04:12 PM, Christopher Lameter wrote: >>> On Tue, 10 Apr 2018, Vlastimil Babka wrote: >>> >>>> 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(), thus using WORK_CPU_UNBOUND. >>> >>> That is a bug.. cache_reap must run on the same cpu since it deals with >>> the per cpu queues of the current cpu. Scheduled_delayed_work() used to >>> guarantee running on teh same cpu. >> >> Did it? When did it stop? (which stable kernels should we backport to?) > > It goes back to v4.5 - ef557180447f ("workqueue: schedule > WORK_CPU_UNBOUND work on wq_unbound_cpumask CPUs") which made > WQ_CPU_UNBOUND on percpu workqueues honor wq_unbound_cpusmask so that > cpu isolation works better. Unless the force_rr option or > unbound_cpumask is set, it still follows local cpu. I see, thanks. >> So is my assumption correct that without specifying a CPU, the next work >> might be processed on a different cpu than the current one, *and also* >> be executed with a kthread/u* that can migrate to another cpu *in the >> middle of the work*? Tejun? > > For percpu work items, they'll keep executing on the same cpu it > started on unless the cpu goes down while executing. Right, but before this patch, with just schedule_delayed_work() i.e. non-percpu? If such work can migrate in the middle, the slab bug is potentially much more serious. >>> schedule_delayed_work_on(smp_processor_id(), work, round_jiffies_relative(REAPTIMEOUT_AC)); >>> >>> instead all of the other changes? >> >> If we can rely on that 100%, sure. > > Yeah, you can. Great, thanks. > Thanks. >