From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753984AbeDTBw3 (ORCPT ); Thu, 19 Apr 2018 21:52:29 -0400 Received: from mail-pl0-f68.google.com ([209.85.160.68]:39482 "EHLO mail-pl0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753710AbeDTBw2 (ORCPT ); Thu, 19 Apr 2018 21:52:28 -0400 X-Google-Smtp-Source: AIpwx4+Z/JMuHDpdGemztksnqQXwVaWrife+YrgzPRyKjHUlQxIf/dJffjk2oAUOTTE4ZZtmM99bNg== Date: Fri, 20 Apr 2018 10:52:21 +0900 From: Sergey Senozhatsky To: Petr Mladek Cc: Sergey Senozhatsky , Steven Rostedt , Andrew Morton , Peter Zijlstra , Tejun Heo , linux-kernel@vger.kernel.org, Sergey Senozhatsky Subject: Re: [PATCHv2] printk: wake up klogd in vprintk_emit Message-ID: <20180420015221.GA6397@jagdpanzerIV> References: <20180414030145.26304-1-sergey.senozhatsky@gmail.com> <20180419014250.5692-1-sergey.senozhatsky@gmail.com> <20180419100248.rflodqcvpvnve5vl@pathway.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180419100248.rflodqcvpvnve5vl@pathway.suse.cz> User-Agent: Mutt/1.9.5 (2018-04-13) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On (04/19/18 12:02), Petr Mladek wrote: > On Thu 2018-04-19 10:42:50, Sergey Senozhatsky wrote: > > We wake up klogd very late - only when current console_sem owner > > is done pushing pending kernel messages to the serial/net consoles. > > In some cases this results in lost syslog messages, because kernel > > log buffer is a circular buffer and if we don't wakeup syslog long > > enough there are chances that logbuf simply will wrap around. > > > > The patch moves the klog wake up call to vprintk_emit(), which is > > the only legit way for a kernel message to appear in the logbuf, > > right before we attempt to grab the console_sem (possibly spinning > > on it waiting for the hand off) and call console drivers. > > The last two lines need an update. What about? Ah. Indeed! > "right after the attempt to handle consoles. As a result, klog > will get waken either after flushing the new message to consoles > or immediately when consoles are still busy with older messages." Looks good. Do you want me to resend the patch? > Otherwise, it looks nice: > > Reviewed-by: Petr Mladek Thanks. -ss