From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933438AbaFKRaJ (ORCPT ); Wed, 11 Jun 2014 13:30:09 -0400 Received: from e36.co.us.ibm.com ([32.97.110.154]:39237 "EHLO e36.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932778AbaFKRaH (ORCPT ); Wed, 11 Jun 2014 13:30:07 -0400 Date: Wed, 11 Jun 2014 10:29:58 -0700 From: "Paul E. McKenney" To: Oleg Nesterov Cc: Thomas Gleixner , Steven Rostedt , Linus Torvalds , LKML , Peter Zijlstra , Andrew Morton , Ingo Molnar , Clark Williams Subject: Re: safety of *mutex_unlock() (Was: [BUG] signal: sighand unprotected when accessed by /proc) Message-ID: <20140611172958.GF4581@linux.vnet.ibm.com> Reply-To: paulmck@linux.vnet.ibm.com References: <20140609154114.20585056@gandalf.local.home> <20140610165704.GA3110@redhat.com> <20140610141306.04a4bcf3@gandalf.local.home> <20140611155251.GA4581@linux.vnet.ibm.com> <20140611170705.GA26816@redhat.com> <20140611171734.GA27457@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140611171734.GA27457@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14061117-3532-0000-0000-0000026928F0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 11, 2014 at 07:17:34PM +0200, Oleg Nesterov wrote: > On 06/11, Oleg Nesterov wrote: > > > > On 06/11, Paul E. McKenney wrote: > > > > > raw_spin_unlock_irqrestore(&rnp->lock, flags); > > > rt_mutex_lock(&mtx); /* Side effect: boosts task t's priority. */ > > > rt_mutex_unlock(&mtx); /* Keep lockdep happy. */ > > > > > > + /* Wait until boostee is done accessing mtx before reinitializing. */ > > > + wait_for_completion(&rnp->boost_completion); > > > + > > > > I must have missed something, I dont understand why we need ->boost_completion. > > > > What if you simply move that rt_mutex into rcu_node ? > > > > Or. Given that rcu_boost_kthread() never exits, it can declare this mutex > > on stack and pass the pointer to rcu_boost() ? > > Ah, please ignore, I forgot about init_proxy_locked(). Although perhaps this > can be solved easily. You beat me to it. ;-) I was thinking of ->boost_completion as the way to solve it easily, but what did you have in mind? Thanx, Paul