From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755890AbaFKRIa (ORCPT ); Wed, 11 Jun 2014 13:08:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:5187 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751564AbaFKRI2 (ORCPT ); Wed, 11 Jun 2014 13:08:28 -0400 Date: Wed, 11 Jun 2014 19:07:05 +0200 From: Oleg Nesterov To: "Paul E. McKenney" 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: <20140611170705.GA26816@redhat.com> References: <20140609142956.3d79e9d1@gandalf.local.home> <20140609154114.20585056@gandalf.local.home> <20140610165704.GA3110@redhat.com> <20140610141306.04a4bcf3@gandalf.local.home> <20140611155251.GA4581@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140611155251.GA4581@linux.vnet.ibm.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/11, Paul E. McKenney wrote: > > @@ -1202,10 +1204,14 @@ static int rcu_boost(struct rcu_node *rnp) > t = container_of(tb, struct task_struct, rcu_node_entry); > rt_mutex_init_proxy_locked(&mtx, t); > t->rcu_boost_mutex = &mtx; > + init_completion(&rnp->boost_completion); can't rcu_init_one() do this? but this is minor, > 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() ? Oleg.