From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752489AbbB0KGN (ORCPT ); Fri, 27 Feb 2015 05:06:13 -0500 Received: from foss.arm.com ([217.140.101.70]:42913 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752368AbbB0KGL (ORCPT ); Fri, 27 Feb 2015 05:06:11 -0500 Date: Fri, 27 Feb 2015 10:06:13 +0000 From: Will Deacon To: Pranith Kumar Cc: Catalin Marinas , Steve Capper , "linux-arm-kernel@lists.infradead.org" , open list Subject: Re: [RFC PATCH] ARM64: cmpxchg.h: Clear the exclusive access bit on fail Message-ID: <20150227100612.GB3628@arm.com> References: <1425016026-19766-1-git-send-email-bobby.prani@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1425016026-19766-1-git-send-email-bobby.prani@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 27, 2015 at 05:46:55AM +0000, Pranith Kumar wrote: > In cmpxchg(), we do a load exclusive on an address and upon a comparison fail, > we skip the store exclusive instruction. This can result in the exclusive bit > still set. If there was a store exclusive after this to the same address, that > will see the exclusive bit set. This should not happen. ... and the problem with that is? > We need to clear the exclusive bit in these cases. Why? Will