From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 934ACC43461 for ; Wed, 2 Sep 2020 09:10:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 739242071B for ; Wed, 2 Sep 2020 09:10:45 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="vOcBHoFb" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726559AbgIBJKY (ORCPT ); Wed, 2 Sep 2020 05:10:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48060 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726212AbgIBJKJ (ORCPT ); Wed, 2 Sep 2020 05:10:09 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2D651C061244 for ; Wed, 2 Sep 2020 02:10:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=w1fHRMTIt/yYBgqSv2mopj3gqz7ZtMfjHHwog1EcRV0=; b=vOcBHoFb/rQxbaoUKEoLKkbXyy 9AQpsCVS7Mgd/TlvSt4RIjin1L7WYv3tYRcdsEYdhgX0SIO05wAf2ZzKF6UGF8Aei8UrnvTmolB61 /tHXFya+cxOqz2Yu5QOqEoWYhm3Bzu/aMBU3vP3z+oYF3xM6cAR8/Bl02vFAwrgXgdOOq7WZd40Ic 9McS4jlNkXOJ0O03FzJJFUMRd3+/wgGZRS1vtPriOolgHBzIwLhBUm+6Y2hDAHbWwurTnj8H7zeLY ysiDpSq5hMIt2qsDoby239DJc+PMXrIj4uU+/qYEj1dFPcqPYAY8DLpQzZsmFmvYR6lIotEUiklP4 sZUFzYRw==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1kDOlv-00077U-2y; Wed, 02 Sep 2020 09:09:39 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id CCA8E3011C6; Wed, 2 Sep 2020 11:09:35 +0200 (CEST) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id B278E2023B335; Wed, 2 Sep 2020 11:09:35 +0200 (CEST) Date: Wed, 2 Sep 2020 11:09:35 +0200 From: peterz@infradead.org To: Guenter Roeck Cc: linux-kernel@vger.kernel.org, mingo@kernel.org, will@kernel.org, npiggin@gmail.com, elver@google.com, jgross@suse.com, paulmck@kernel.org, rostedt@goodmis.org, rjw@rjwysocki.net, joel@joelfernandes.org, svens@linux.ibm.com, tglx@linutronix.de Subject: Re: [PATCH v2 10/11] lockdep: Only trace IRQ edges Message-ID: <20200902090935.GW1362448@hirez.programming.kicks-ass.net> References: <20200821084738.508092956@infradead.org> <20200821085348.723775490@infradead.org> <20200902042137.GA163925@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200902042137.GA163925@roeck-us.net> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 01, 2020 at 09:21:37PM -0700, Guenter Roeck wrote: > [ 0.000000] WARNING: CPU: 0 PID: 0 at kernel/locking/lockdep.c:4875 check_flags.part.39+0x280/0x2a0 > [ 0.000000] DEBUG_LOCKS_WARN_ON(lockdep_hardirqs_enabled()) > [ 0.000000] [<00000000004cff18>] lock_acquire+0x218/0x4e0 > [ 0.000000] [<0000000000d740c8>] _raw_spin_lock+0x28/0x40 > [ 0.000000] [<00000000009870f4>] p1275_cmd_direct+0x14/0x60 Lol! yes, I can see that going side-ways... let me poke at that.