From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756552AbcCUPAp (ORCPT ); Mon, 21 Mar 2016 11:00:45 -0400 Received: from mail-pf0-f194.google.com ([209.85.192.194]:35592 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755468AbcCUPAn (ORCPT ); Mon, 21 Mar 2016 11:00:43 -0400 Date: Mon, 21 Mar 2016 23:58:32 +0900 From: Sergey Senozhatsky To: Jan Kara Cc: Sergey Senozhatsky , Byungchul Park , Sergey Senozhatsky , 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: <20160321145832.GA545@swordfish> References: <1458483191-3596-1-git-send-email-sergey.senozhatsky@gmail.com> <1458483191-3596-2-git-send-email-sergey.senozhatsky@gmail.com> <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> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160321143212.GK30819@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 Jan, On (03/21/16 15:32), Jan Kara wrote: [..] > > we have 2 spin locks in vprintk_emit() -- logbuf_lock and sem->lock. and N > > CPUs can concurrently lockup on those two locks, which already makes a > > single static pointer in spiun_dump() questionable. > > > > logbug_lock *theoretically* can detect and handle recursive printk()s, > > there is no way to catch sem->lock spin_dump() at the moment (but that's > > not the point). > > > > there are 2 new spin locks in vprintk_emit() -- p->pi_lock and rq->lock. > > Actually, this is not true. These locks are already in vprintk_emit() via > the up(&console_sem) call from console_unlock() since up() can call > wake_up() which needs the same locks as wake_up_process(). true. I meant new locks (which come with printk_kthread). the already existing locks and problems were not addressed. > 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? I'll take a look and re-spin. -ss