From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932317AbdLTIoj (ORCPT ); Wed, 20 Dec 2017 03:44:39 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:50372 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754204AbdLTIoi (ORCPT ); Wed, 20 Dec 2017 03:44:38 -0500 Date: Wed, 20 Dec 2017 09:44:34 +0100 (CET) From: Anna-Maria Gleixner To: Peter Zijlstra cc: Sebastian Andrzej Siewior , LKML , Ingo Molnar , Christoph Hellwig , keescook@chromium.org, John Stultz , Thomas Gleixner Subject: Re: [PATCH 17/25] hrtimer: Implementation of softirq hrtimer handling In-Reply-To: <20171219132123.ut4vrmd5uigz4bw7@hirez.programming.kicks-ass.net> Message-ID: References: <20170831105725.809317030@linutronix.de> <20170831105826.921969670@linutronix.de> <20170927164025.GI17526@worktop.programming.kicks-ass.net> <20171219085843.l55fasrfdqdyta5z@breakpoint.cc> <20171219132123.ut4vrmd5uigz4bw7@hirez.programming.kicks-ass.net> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="8323329-1080708103-1513759474=:4025" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --8323329-1080708103-1513759474=:4025 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT On Tue, 19 Dec 2017, Peter Zijlstra wrote: > On Tue, Dec 19, 2017 at 09:58:44AM +0100, Sebastian Andrzej Siewior wrote: > > this is late I know… > > > > On 2017-09-27 18:40:26 [+0200], Peter Zijlstra wrote: > > > - removed superfluous local_bh_disable(), since local_irq_disable() > > > already implies much the same. > > > > it is not superfluous. > > > > > Please consider... > > > > > > @@ -1768,7 +1786,6 @@ int hrtimers_dead_cpu(unsigned int scpu) > > > BUG_ON(cpu_online(scpu)); > > > tick_cancel_sched_timer(scpu); > > > > > > - local_bh_disable(); > > > local_irq_disable(); > > > old_base = &per_cpu(hrtimer_bases, scpu); > > > new_base = this_cpu_ptr(&hrtimer_bases); > > > @@ -1796,7 +1813,6 @@ int hrtimers_dead_cpu(unsigned int scpu) > > > /* Check, if we got expired work to do */ > > > __hrtimer_peek_ahead_timers(); > > > local_irq_enable(); > > > - local_bh_enable(); > > > return 0; > > > } > > > > we need in there. That local_bh_disable() is required in order to let > > raise_softirq_irqoff() not do anything stupid in particular we need > > !in_interrupt() defer wakeup_softirqd() until local_bh_enable(). > > Otherwise wakeup_softirqd() might actually try to wakeup the process and > > go after the pi_lock which can't happen while holding cpu_base->lock. > > Argh, that's horrible and definitely needs a comment. > will add it in v4 with a comment. Anna-Maria --8323329-1080708103-1513759474=:4025--