From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754216Ab3JDL5f (ORCPT ); Fri, 4 Oct 2013 07:57:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28786 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752741Ab3JDL5e (ORCPT ); Fri, 4 Oct 2013 07:57:34 -0400 Date: Fri, 4 Oct 2013 13:50:21 +0200 From: Oleg Nesterov To: Peter Zijlstra Cc: "Paul E. McKenney" , Mel Gorman , Rik van Riel , Srikar Dronamraju , Ingo Molnar , Andrea Arcangeli , Johannes Weiner , Thomas Gleixner , Steven Rostedt , Linus Torvalds , linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/3] rcu: Create rcu_sync infrastructure Message-ID: <20131004115021.GA7207@redhat.com> References: <20131003184719.GA11996@redhat.com> <20131003192135.GR5790@linux.vnet.ibm.com> <20131003193206.GA17796@redhat.com> <20131003193319.GB17796@redhat.com> <20131003195026.GT5790@linux.vnet.ibm.com> <20131003200002.GA23768@redhat.com> <20131003211009.GA4127@redhat.com> <20131004071814.GS28601@twins.programming.kicks-ass.net> <20131004111513.GA5699@redhat.com> <20131004113607.GI3081@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131004113607.GI3081@twins.programming.kicks-ass.net> 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 10/04, Peter Zijlstra wrote: > > On Fri, Oct 04, 2013 at 01:15:13PM +0200, Oleg Nesterov wrote: > > Of course we can fix this, but wait_for_completion/complete already > > does the necessary work: x->done acts as a resource counter which is > > always checked/incremented/decremented under the same lock. > > Urgh, so now you're not using a semaphore as completion but using a > completion as semaphore. Yes. And we can use it as semaphore only because we already have gp_count. Of course, we could add ->gp_mutex and change enter/exit to lock/unlock it if exclusive. But I do not really like it even if this can makes the code a bit (only a little bit) simpler. This will increase sizeof() and for no reason, I think, because to some degree this will also duplicate the synchronization logic. And while this doesn't really matter, this will penalize the contending writers a bit: it is not easy (but of course possible) to take this mutex after rss->gp_count++, and we do want to increment this counter "asap". Oleg.