From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755734AbbGCP0E (ORCPT ); Fri, 3 Jul 2015 11:26:04 -0400 Received: from mail-yk0-f175.google.com ([209.85.160.175]:35228 "EHLO mail-yk0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755691AbbGCPZ6 (ORCPT ); Fri, 3 Jul 2015 11:25:58 -0400 Date: Fri, 3 Jul 2015 11:25:55 -0400 From: Tejun Heo To: Petr Mladek Cc: Linus Torvalds , Andrew Morton , "David S. Miller" , "linux-kernel@vger.kernel.org" , "netdev@vger.kernel.org" , Kay Sievers , Josh Triplett , Linux Embedded , geert@linux-m68k.org Subject: Re: [PATCH v2 v4.2-rc1] printk: make extended printk support conditional on netconsole Message-ID: <20150703152555.GA5273@mtj.duckdns.org> References: <1430318704-32374-4-git-send-email-tj@kernel.org> <20150629152805.GM15805@mtj.duckdns.org> <20150629154914.GQ15805@mtj.duckdns.org> <20150629161355.GS15805@mtj.duckdns.org> <20150629233140.GA7711@mtj.duckdns.org> <20150702162141.GC30677@mtj.duckdns.org> <20150703140352.GD32664@pathway.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150703140352.GD32664@pathway.suse.cz> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jul 03, 2015 at 04:07:34PM +0200, Petr Mladek wrote: > > @@ -2561,9 +2591,11 @@ void register_console(struct console *newcon) > > console_drivers->next = newcon; > > } > > > > - if (newcon->flags & CON_EXTENDED) > > - if (!nr_ext_console_drivers++) > > + if (newcon->flags & CON_EXTENDED) { > > + if (!nr_ext_console_drivers) > > pr_info("printk: continuation disabled due to ext consoles, expect more fragments in /dev/kmsg\n"); > > I would move the check and the message into > inc_nr_ext_console_drivers() when CONFIG_PRINTK_CON_EXTENDED is > defined. It does not make sense if we do not increment the counter. It doesn't make any difference as it gets compiled out anyway but yeah moving it into the inc function makes more sense. Updating the patch. Thanks. -- tejun