From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754122AbcGLOD3 (ORCPT ); Tue, 12 Jul 2016 10:03:29 -0400 Received: from mail-pa0-f65.google.com ([209.85.220.65]:35074 "EHLO mail-pa0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751221AbcGLOD1 (ORCPT ); Tue, 12 Jul 2016 10:03:27 -0400 Date: Tue, 12 Jul 2016 23:03:00 +0900 From: Sergey Senozhatsky To: Petr Mladek Cc: Sergey Senozhatsky , Viresh Kumar , Jan Kara , Sergey Senozhatsky , Tejun Heo , Greg Kroah-Hartman , Linux Kernel Mailing List , vlevenetz@mm-sol.com, vaibhav.hiremath@linaro.org, alex.elder@linaro.org, johan@kernel.org, akpm@linux-foundation.org, rostedt@goodmis.org Subject: Re: [Query] Preemption (hogging) of the work handler Message-ID: <20160712140300.GA520@swordfish> References: <20160701165959.GR12473@ubuntu> <20160701172232.GD28719@htj.duckdns.org> <20160706182842.GS2671@ubuntu> <20160711102603.GI12410@quack2.suse.cz> <20160711154438.GA528@swordfish> <20160711223501.GI4695@ubuntu> <20160712093805.GA498@swordfish> <20160712125243.GA8597@pathway.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160712125243.GA8597@pathway.suse.cz> User-Agent: Mutt/1.6.2 (2016-07-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, On (07/12/16 14:52), Petr Mladek wrote: [..] > > On (07/11/16 15:35), Viresh Kumar wrote: > > [..] > > > Sometimes, the platform doesn't come back after suspend. I have tried > > > enabling no-console-suspend and the last line it prints is: > > > > > > Disabling non-boot CPUs > > I guess that the printk() kthread is not longer scheduled when there > is only one CPU left. > > > > And nothing after that at all. We have to forcefully reboot the phone > > > after that. Moving the prints to they synchronous way (using > > > echo 1 > /sys/module/printk/parameters/synchronous), fixes that issue. > > > > hm... I'll take a look. > > We might try to explicitly flush the consoles in suspend_console(). > But I am not sure if we always want to do so because it might take > a while. Also it need not help if someone already owns the > console_sem. Note the console_unlock() calls the cond_resched() > when in safe context. Thanks, Petr. so, I'm looking at this thing now: : [ 12.874909] sched: RT throttling activated for rt_rq ffffffc0ac13fcd0 (cpu 0) : [ 12.874909] potential CPU hogs: : [ 12.874909] printk (292) so it's either cond_resched() does not reshed, keeping printk kthread active, which, however, upsets the sched and triggers throttling (umm, what); or we, somehow, have `console_may_schedule == 0' in this final console_unlock(), so cond_resched() never happens. I'm looking at mainline 3.10, tho. Viresh, can you verify if we can do cond_resched() from console_unlock() (console_may_schedule != 0) ? -ss > Well, we might do the best effort when no_console_suspend is enabled. > > > Best Regards, > Petr >