Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753116AbdGNGnD (ORCPT ); Fri, 14 Jul 2017 02:43:03 -0400 Received: from LGEAMRELO11.lge.com ([156.147.23.51]:48675 "EHLO lgeamrelo11.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751166AbdGNGnC (ORCPT ); Fri, 14 Jul 2017 02:43:02 -0400 X-Original-SENDERIP: 156.147.1.151 X-Original-MAILFROM: byungchul.park@lge.com X-Original-SENDERIP: 10.177.222.33 X-Original-MAILFROM: byungchul.park@lge.com Date: Fri, 14 Jul 2017 15:42:10 +0900 From: Byungchul Park To: Byungchul Park Cc: Peter Zijlstra , Ingo Molnar , tglx@linutronix.de, Michel Lespinasse , boqun.feng@gmail.com, kirill@shutemov.name, "linux-kernel@vger.kernel.org" , linux-mm@kvack.org, akpm@linux-foundation.org, willy@infradead.org, npiggin@gmail.com, kernel-team@lge.com Subject: Re: [PATCH v7 06/16] lockdep: Detect and handle hist_lock ring buffer overwrite Message-ID: <20170714064210.GK20323@X58A-UD3R> References: <20170712020053.GB20323@X58A-UD3R> <20170712075617.o2jds2giuoqxjqic@hirez.programming.kicks-ass.net> <20170713020745.GG20323@X58A-UD3R> <20170713081442.GA439@worktop> <20170713085746.GH20323@X58A-UD3R> <20170713095052.dssev34f7c43vlok@hirez.programming.kicks-ass.net> <20170713100953.GI20323@X58A-UD3R> <20170713102905.ysrvn7td6ryt4jaj@hirez.programming.kicks-ass.net> <20170713111209.ji6w3trt45icpuf6@hirez.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1627 Lines: 40 On Thu, Jul 13, 2017 at 08:23:33PM +0900, Byungchul Park wrote: > On Thu, Jul 13, 2017 at 8:12 PM, Peter Zijlstra wrote: > > On Thu, Jul 13, 2017 at 12:29:05PM +0200, Peter Zijlstra wrote: > >> On Thu, Jul 13, 2017 at 07:09:53PM +0900, Byungchul Park wrote: > >> > On Thu, Jul 13, 2017 at 11:50:52AM +0200, Peter Zijlstra wrote: > >> > > wait_for_completion(&C); > >> > > atomic_inc_return(); > >> > > > >> > > mutex_lock(A1); > >> > > mutex_unlock(A1); > >> > > > >> > > > >> > > > >> > > spin_lock(B1); > >> > > spin_unlock(B1); > >> > > > >> > > ... > >> > > > >> > > spin_lock(B64); > >> > > spin_unlock(B64); > >> > > > >> > > > >> > > > > > > Also consider the alternative: > > > > > > spin_lock(D); > > spin_unlock(D); > > > > complete(&C); > > > > > > in which case the context test will also not work. > > Context tests are done on xhlock with the release context, _not_ > acquisition context. For example, spin_lock(D) and complete(&C) are > in the same context, so the test would pass in this example. I think you got confused. Or do I?