Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967026AbbDXUPW (ORCPT ); Fri, 24 Apr 2015 16:15:22 -0400 Received: from mail.wdtv.com ([66.118.69.84]:52499 "EHLO mail.wdtv.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965780AbbDXUPU (ORCPT ); Fri, 24 Apr 2015 16:15:20 -0400 X-Greylist: delayed 440 seconds by postgrey-1.27 at vger.kernel.org; Fri, 24 Apr 2015 16:15:19 EDT From: Gene Heskett To: Frederic Weisbecker Subject: Re: [PATCH 4/4] nohz: Set isolcpus when nohz_full is set Date: Fri, 24 Apr 2015 16:07:52 -0400 User-Agent: KMail/1.9.10 (enterprise35 0.20100827.1168748) Cc: LKML , Chris Metcalf , "Rafael J . Wysocki" , Peter Zijlstra , Mike Galbraith , Ingo Molnar , Dave Jones , Thomas Gleixner , Oleg Nesterov , "Paul E . McKenney" , Ingo Molnar , Rik van Riel , Martin Schwidefsky References: <1429891111-30855-1-git-send-email-fweisbec@gmail.com> <1429891111-30855-5-git-send-email-fweisbec@gmail.com> In-Reply-To: <1429891111-30855-5-git-send-email-fweisbec@gmail.com> X-KMail-QuotePrefix: > MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <201504241607.52460.gheskett@wdtv.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2836 Lines: 69 On Friday 24 April 2015 11:58:31 Frederic Weisbecker wrote: > From: Chris Metcalf > > nohz_full is only useful with isolcpus also set, since otherwise the > scheduler has to run periodically to try to determine whether to steal > work from other cores. > > Accordingly, when booting with nohz_full=xxx on the command line, we > should act as if isolcpus=xxx was also set, and set (or extend) the > isolcpus set to include the nohz_full cpus. > > Acked-by: Mike Galbraith ["thumbs up!"] > Acked-by: Rik van Riel > Acked-by: Peter Zijlstra (Intel) > Signed-off-by: Chris Metcalf > Cc: Peter Zijlstra (Intel) > Cc: Paul E. McKenney > Cc: Rafael J. Wysocki > Cc: Martin Schwidefsky > Cc: Mike Galbraith > Cc: Ingo Molnar > Cc: Rik van Riel > Signed-off-by: Frederic Weisbecker As a user of LinuxCNC, we expect the core(s) so isolated by the isolcpus argument at bootup time to remain undisturbed in order to preserve the I/O updates heartbeat latency at the absolute minimum that board and cpu combo can accomplish. If this patch changes that behaviour such that the isolated core is grabbed for another job while the RTAI bits and pieces are loaded and running machinery, causing the machinery to lose this steady, possibly as little as a 20 microsecond period repeating operation heartbeat, this will quite effectively destroy our ability to run this software on linux without farming that whole operation out to intelligent I/O cards. Please keep this in mind. I don't read the patch well enough to determine this myself. > --- > kernel/sched/core.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/kernel/sched/core.c b/kernel/sched/core.c > index 6f149f8..e95b4d8 100644 > --- a/kernel/sched/core.c > +++ b/kernel/sched/core.c > @@ -7042,6 +7042,9 @@ void __init sched_init_smp(void) > alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL); > alloc_cpumask_var(&fallback_doms, GFP_KERNEL); > > + /* nohz_full won't take effect without isolating the cpus. */ > + tick_nohz_full_add_cpus_to(cpu_isolated_map); > + > sched_init_numa(); > > /* Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/