From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751266AbcF2FcZ (ORCPT ); Wed, 29 Jun 2016 01:32:25 -0400 Received: from mail-pa0-f68.google.com ([209.85.220.68]:36252 "EHLO mail-pa0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750756AbcF2FcX (ORCPT ); Wed, 29 Jun 2016 01:32:23 -0400 Date: Wed, 29 Jun 2016 14:32:07 +0900 From: Sergey Senozhatsky To: Joe Perches Cc: Sergey Senozhatsky , Petr Mladek , Andrew Morton , Jan Kara , Tejun Heo , Tetsuo Handa , linux-kernel@vger.kernel.org, Byungchul Park , Sergey Senozhatsky Subject: Re: [PATCH v12 0/3] printk: Make printk() completely async Message-ID: <20160629053207.GA522@swordfish> References: <20160513131848.2087-1-sergey.senozhatsky@gmail.com> <20160629050835.GA730@swordfish> <1467177404.24287.99.camel@perches.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1467177404.24287.99.camel@perches.com> User-Agent: Mutt/1.6.1 (2016-04-27) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On (06/28/16 22:16), Joe Perches wrote: > On Wed, 2016-06-29 at 14:08 +0900, Sergey Senozhatsky wrote: > > the patch to fix the async KERN_CONT printk regression I mentioned > > several days ago in another thread. > > KERN_CONT is effectively a no-op. > This is any printk without a KERN_ if the message has no LOG_NEWLINE in flags then it's stored as LOG_CONT in log buffer, but before getting there it sits in cont buffer. and those are usually KERN_CONT messages that don't have LOG_NEWLINE in flags. may be the wording is not exactly correct in the original message. -ss