From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964817Ab2DLBxs (ORCPT ); Wed, 11 Apr 2012 21:53:48 -0400 Received: from e31.co.us.ibm.com ([32.97.110.149]:40313 "EHLO e31.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757188Ab2DLBxq (ORCPT ); Wed, 11 Apr 2012 21:53:46 -0400 Date: Wed, 11 Apr 2012 18:53:41 -0700 From: "Paul E. McKenney" To: David Miller Cc: shemminger@vyatta.com, mroos@linux.ee, linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: suspicious RCU usage warnings in 3.3.0 Message-ID: <20120412015341.GA2497@linux.vnet.ibm.com> Reply-To: paulmck@linux.vnet.ibm.com References: <20120411171004.016ddd95@nehalam.linuxnetplumber.net> <20120411.201854.1070083308359208025.davem@davemloft.net> <20120412004507.GF2473@linux.vnet.ibm.com> <20120411.210319.370705937753558953.davem@davemloft.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120411.210319.370705937753558953.davem@davemloft.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-Content-Scanned: Fidelis XPS MAILER x-cbid: 12041201-7282-0000-0000-0000081E0E1F Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 11, 2012 at 09:03:19PM -0400, David Miller wrote: > From: "Paul E. McKenney" > Date: Wed, 11 Apr 2012 17:45:07 -0700 > > > On Wed, Apr 11, 2012 at 08:18:54PM -0400, David Miller wrote: > >> From: Stephen Hemminger > >> Date: Wed, 11 Apr 2012 17:10:04 -0700 > >> > >> > On Wed, 11 Apr 2012 16:08:37 -0700 > >> > "Paul E. McKenney" wrote: > >> > > >> >> Hmmm... What CPU family is this running on? From the look of the > >> >> stack, it is sneaking out of idle into softirq without telling RCU. > >> >> This would cause RCU to complain bitterly about being invoked from > >> >> the idle loop -- and RCU ignores CPUs in the idle loop. > >> >> > >> >> Thanx, Paul > >> > > >> > Sun4... Ping David. > >> > >> So is there anything specific I need to do in the sparc64 > >> idle loop? > > > > Hmmm... I must confess that I don't immediately see how control > > is passing from cpu_idle() in arch/sparc/kernel/process_64.c to > > __handle_softirq(). > > > > But it looks like a simple function call in the call trace: > > It's coming from the trap return code path at the end of hardware > interrupt processing, on the IRQ stack. Ah! I should have guessed something like that was happening given that __handle_softirq() is written in assembly. Thanx, Paul