Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752695AbbHKSQL (ORCPT ); Tue, 11 Aug 2015 14:16:11 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:51613 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752390AbbHKSQK (ORCPT ); Tue, 11 Aug 2015 14:16:10 -0400 Date: Tue, 11 Aug 2015 11:16:08 -0700 From: Greg Kroah-Hartman To: Pan Xinhui Cc: "linux-kernel@vger.kernel.org" , Andrew Morton , pmladek@suse.cz, rostedt@goodmis.org, Tejun Heo , Peter Hurley , Joe Perches , hch@lst.de, viro@zeniv.linux.org.uk, Vasily Averin Subject: Re: [PATCH] printk: rebalance printk Message-ID: <20150811181608.GA29819@kroah.com> References: <55C9DB15.2070800@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55C9DB15.2070800@intel.com> User-Agent: Mutt/1.5.23+102 (2ca89bed6448) (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1321 Lines: 37 On Tue, Aug 11, 2015 at 07:23:01PM +0800, Pan Xinhui wrote: > From: Pan Xinhui > > printk can be called in any context, It's very useful to output debug > info. > > But it might cause very bad issues on some special cases. For example, > some driver hit errors, and it dumps many messages like reg values, etc. > > Sometimes, printk is called when irqs disabled. This is OKay if there is > a few messages. But What would happen if many messages outputted by other > drivers at same time. > > Here is the scenario. > CPUA CPUB > local_irq_save(flags); > printk() > while(..) { --> console_unlock > printk(...); > //hundreds or thousands loops > } //all messages flushed out to consoles > local_irq_restore(flags); > Where are you seeing this type of scenario "in the wild"? Or is this just a "debug/bringup hardware" issue? We shouldn't be ever stuck in a printk that prints hundreds or thousands of loops, if so, we need to fix the kernel code that does that, as we do have control over this. thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/