From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752450AbaATN6x (ORCPT ); Mon, 20 Jan 2014 08:58:53 -0500 Received: from merlin.infradead.org ([205.233.59.134]:56993 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751301AbaATN6t (ORCPT ); Mon, 20 Jan 2014 08:58:49 -0500 Date: Mon, 20 Jan 2014 14:58:03 +0100 From: Peter Zijlstra To: Tim Chen Cc: Ingo Molnar , Andrew Morton , Thomas Gleixner , "Paul E.McKenney" , Will Deacon , linux-kernel@vger.kernel.org, linux-mm , linux-arch@vger.kernel.org, Linus Torvalds , Waiman Long , Andrea Arcangeli , Alex Shi , Andi Kleen , Michel Lespinasse , Davidlohr Bueso , Matthew R Wilcox , Dave Hansen , Rik van Riel , Peter Hurley , Raghavendra K T , George Spelvin , "H. Peter Anvin" , Arnd Bergmann , Aswin Chandramouleeswaran , Scott J Norton , "Figo.zhang" Subject: Re: [PATCH v7 2/6] MCS Lock: optimizations and extra comments Message-ID: <20140120135803.GF31570@twins.programming.kicks-ass.net> References: <1389917300.3138.12.camel@schen9-DESK> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1389917300.3138.12.camel@schen9-DESK> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 16, 2014 at 04:08:20PM -0800, Tim Chen wrote: > Remove unnecessary operation and make the cmpxchg(lock, node, NULL) == node > check in mcs_spin_unlock() likely() as it is likely that a race did not occur > most of the time. It might be good to describe why the node->locked=1 is thought unnecessary. I concur it is, but upon reading this changelog I was left wondering and had to go read the code and run through the logic to convince myself. Having done so, I'm now wondering if we think so for the same reason -- although I'm fairly sure we are. The argument goes like: everybody only looks at his own ->locked value, therefore the only one possibly interested in node->locked is the lock owner. However the lock owner doesn't care what's in it, it simply assumes its 1 but really doesn't care one way or another. That said, a possible DEBUG mode might want to actually set it, validate that all other linked nodes are 0 and upon unlock verify the same before flipping next->locked to 1.