From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752580AbaBGOVz (ORCPT ); Fri, 7 Feb 2014 09:21:55 -0500 Received: from www.linutronix.de ([62.245.132.108]:45757 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751438AbaBGOVx (ORCPT ); Fri, 7 Feb 2014 09:21:53 -0500 Message-ID: <52F4EBFA.3040401@linutronix.de> Date: Fri, 07 Feb 2014 15:21:46 +0100 From: Sebastian Andrzej Siewior User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.2.0 MIME-Version: 1.0 To: Steven Rostedt CC: LKML , linux-rt-users , Thomas Gleixner , Clark Williams , "Luis Claudio R. Goncalves" , John Kacur , Ulrich Obergfell Subject: Re: [PATCH RT] rt: Make cpu_chill() use hrtimer instead of msleep() References: <20140205115125.3cc950ce@gandalf.local.home> <20140207113006.GD23668@linutronix.de> <20140207090834.72774272@gandalf.local.home> <20140207091313.097f9059@gandalf.local.home> In-Reply-To: <20140207091313.097f9059@gandalf.local.home> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/07/2014 03:13 PM, Steven Rostedt wrote: > On Fri, 7 Feb 2014 09:08:34 -0500 > Steven Rostedt wrote: > > >>> could you please tell me which two locks are invovled here? > > I should have also stated that it was only one lock that was involved. > But the lock owner was doing a msleep() that requires a wakeup by > ksoftirqd to continue. If ksoftirqd happens to be blocked on a lock > held by the msleep() caller, then you have your deadlock. That makes sense. > It's best not to have any softirqs going to sleep requiring another > softirq to wake it up. Note, if we ever require a timer softirq to do a > cpu_chill() it will most definitely hit this deadlock. Yes. And that sleep in softirq is also not really nice but this isn't new. Thanks for the patch & explanation. > > -- Steve Sebastian