From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751443AbcIOOiq (ORCPT ); Thu, 15 Sep 2016 10:38:46 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:40218 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750750AbcIOOii (ORCPT ); Thu, 15 Sep 2016 10:38:38 -0400 Date: Thu, 15 Sep 2016 16:38:34 +0200 From: Peter Zijlstra To: Bartosz Golaszewski Cc: Linus Walleij , Alexandre Courbot , Ingo Molnar , LKML , linux-gpio Subject: Re: lockdep: incorrect deadlock warning with two GPIO expanders Message-ID: <20160915143834.GE5012@twins.programming.kicks-ass.net> References: <20160912120938.GR10153@twins.programming.kicks-ass.net> <20160912153356.GD10121@twins.programming.kicks-ass.net> <20160915075150.GO5008@twins.programming.kicks-ass.net> <20160915133922.GE5016@twins.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.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 15, 2016 at 04:08:52PM +0200, Bartosz Golaszewski wrote: > 2016-09-15 15:39 GMT+02:00 Peter Zijlstra : > > In any case, if this fails, we can always punt and simply count the > > total number of instances of this driver on the system and go with that. > > > > But for __mutex_init() to work with the key argument you need to know > it at compile time, right? You can do something like: mutex_init(&mutex); lockdep_set_subclass(&mutex, nr); which will of course fail at runtime the moment nr >= 8, but is that really a concern? Equally you can do: static struct lock_class_key my_keys[NR]; mutex_init(&mutex); BUG_ON(nr > NR); lockdep_set_class(&mutex, my_keys + nr); and have a bigger limit.