From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757187AbcCURNT (ORCPT ); Mon, 21 Mar 2016 13:13:19 -0400 Received: from mail-pf0-f193.google.com ([209.85.192.193]:32993 "EHLO mail-pf0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756392AbcCURNR (ORCPT ); Mon, 21 Mar 2016 13:13:17 -0400 Date: Tue, 22 Mar 2016 02:11:05 +0900 From: Sergey Senozhatsky To: Jan Kara Cc: Sergey Senozhatsky , Sergey Senozhatsky , Byungchul Park , Andrew Morton , Jan Kara , Petr Mladek , Tejun Heo , Tetsuo Handa , linux-kernel@vger.kernel.org Subject: Re: [RFC][PATCH v5 1/2] printk: Make printk() completely async Message-ID: <20160321171105.GA1809@swordfish> References: <20160321000647.GP5220@X58A-UD3R> <20160321004347.GA563@swordfish> <20160321005608.GQ5220@X58A-UD3R> <20160321073507.GA501@swordfish> <20160321080751.GA2279@X58A-UD3R> <20160321084743.GB2279@X58A-UD3R> <20160321092848.GB504@swordfish> <20160321143212.GK30819@quack.suse.cz> <20160321145832.GA545@swordfish> <20160321153305.GA31279@quack.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160321153305.GA31279@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 On (03/21/16 16:33), Jan Kara wrote: [..] > > > And by calling wake_up_process() under logbuf_lock, you actually introduce > > > recursion issues for printk_deferred() messages which are supposed to be > > > working from under rq->lock and similar. So I think you have to keep this > > > section outside of logbuf_lock. > > > > hm, in_sched (printk_deferred()) messages are printed by > > irq work->wake_up_klogd_work_func(), not by wake_up_process() > > from vprintk_emit(). or am I missing something? > > Think of following: > > some function > printk() > vprintk_emit() > spin_lock(&logbuf_lock); > ... > wake_up_process() > printk_deferred() > vprintk_emit() -> recursion on logbuf_lock uh, indeed. I was more concerned about printk() calls that are troublemakers and are already in wake_up_process() - spin_dump()s. but yes, braking printk_deferred() in this case is a regression. thanks for pointing that out. and also thanks to Byungchul. -ss > Previously scheduler code was allowed to call printk_deferred() wherever it > wanted... > > So we are not supposed to call into the scheduler from under logbuf_lock... > > Honza > -- > Jan Kara > SUSE Labs, CR >