From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752580AbcAFBku (ORCPT ); Tue, 5 Jan 2016 20:40:50 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:34833 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751663AbcAFBkr (ORCPT ); Tue, 5 Jan 2016 20:40:47 -0500 Date: Wed, 6 Jan 2016 10:41:50 +0900 From: Sergey Senozhatsky To: Jan Kara Cc: Sergey Senozhatsky , Sergey Senozhatsky , Andrew Morton , Petr Mladek , KY Sri nivasan , Steven Rostedt , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/7] printk: Hand over printing to console if printing too long Message-ID: <20160106014130.GA781@swordfish> References: <20151210145251.GA540@swordfish> <20151222134730.GD7266@quack.suse.cz> <20151223015420.GA2008@swordfish> <20160105143717.GC14464@quack.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160105143717.GC14464@quack.suse.cz> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, On (01/05/16 15:37), Jan Kara wrote: > Hi, > > On Wed 23-12-15 10:54:49, Sergey Senozhatsky wrote: > > slowly looking through the patches. > > Back from Christmas vacation... > > > How about setting 'sync_print' to 'true' in... > > bust_spinlocks() /* only set to true */ > > or > > console_verbose() /* um... may be... */ > > or > > having a separate one-liner for that > > > > void console_panic_mode(void) > > { > > sync_print = true; > > } > > > > and call it early in panic(), before we send out IPI_STOP. > > I like using console_verbose() for setting sync_print to true. That will > likely be more reliable than using oops in progress. After all > console_verbose() is used like console_panic_mode() anyway and in quite a > few places so it is a reasonable match. Agree, only arch/microblaze/kernel/setup.c and arch/nios2/kernel/setup.c do console_verbose() early in setup_arch(), the rest seems to be what I was thinking of. -ss