From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Andrzej Siewior Subject: Re: [PATCH RT] sched/workqueue: Only wake up idle workers if not blocked on sleeping spin lock Date: Fri, 3 May 2013 17:53:40 +0200 Message-ID: <20130503155340.GD8230@linutronix.de> References: <1363633969.28194.3.camel@gandalf.local.home> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Cc: LKML , RT , Tejun Heo , Thomas Gleixner , Peter Zijlstra To: Steven Rostedt Return-path: Received: from www.linutronix.de ([62.245.132.108]:45908 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932459Ab3ECPxn (ORCPT ); Fri, 3 May 2013 11:53:43 -0400 Content-Disposition: inline In-Reply-To: <1363633969.28194.3.camel@gandalf.local.home> Sender: linux-rt-users-owner@vger.kernel.org List-ID: * Steven Rostedt | 2013-03-18 15:12:49 [-0400]: >In -rt, most spin_locks() turn into mutexes. One of these spin_lock >conversions is performed on the workqueue gcwq->lock. When the idle >worker is worken, the first thing it will do is grab that same lock and >it too will block, possibly jumping into the same code, but because >nr_running would already be decremented it prevents an infinite loop. > >But this is still a waste of CPU cycles, and it doesn't follow the method >of mainline, as new workers should only be woken when a worker thread is >truly going to sleep, and not just blocked on a spin_lock(). > >Check the saved_state too before waking up new workers. > >Signed-off-by: Steven Rostedt Taking for v3.8-rt. Sebastian