Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753395AbbLCToD (ORCPT ); Thu, 3 Dec 2015 14:44:03 -0500 Received: from mail-yk0-f178.google.com ([209.85.160.178]:36811 "EHLO mail-yk0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753022AbbLCToB (ORCPT ); Thu, 3 Dec 2015 14:44:01 -0500 Date: Thu, 3 Dec 2015 14:43:58 -0500 From: Tejun Heo To: Don Zickus Cc: Ulrich Obergfell , Ingo Molnar , Peter Zijlstra , Andrew Morton , linux-kernel@vger.kernel.org, kernel-team@fb.com Subject: Re: [PATCH 2/2] workqueue: implement lockup detector Message-ID: <20151203194358.GK27463@mtj.duckdns.org> References: <20151203002810.GJ19878@mtj.duckdns.org> <20151203002839.GK19878@mtj.duckdns.org> <20151203175024.GE27730@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151203175024.GE27730@redhat.com> 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 Content-Length: 2436 Lines: 54 Hello, Don. On Thu, Dec 03, 2015 at 12:50:24PM -0500, Don Zickus wrote: > This sort of looks like the hung task detector.. > > I am a little concerned because we just made a big effort to properly > separate the hardlockup and softlockup paths and yet retain the flexibility > to enable/disable them separately. Now it seems the workqueue detector is > permanently entwined with the softlockup detector. I am not entirely sure > that is correct thing to do. The only area they get entwined is how it's controlled from userland. While it isn't quite the same as softlockup detection, I think what it monitors is close enough that it makes sense to put them under the same interface. > It also seems awkward for the lockup code to have to jump to the workqueue > code to function properly. :-/ Though we have made exceptions for the virt > stuff and the workqueue code is simple.. Softlockup code doesn't depend on workqueue in any way. Workqueue tags on touch_softlockup to detect cases which shouldn't be warned and its enabledness is controlled together with softlockup and that's it. > Actually, I am curious, it seems if you just added a > /proc/sys/kernel/wq_watchdog entry, you could elminiate the entire need for > modifying the watchdog code to begin with. As you really aren't using any > of it other than piggybacking on the touch_softlockup_watchdog stuff, which > could probably be easily added without all the extra enable/disable changes > in watchdog.c. Yeah, except for touch signal, it's purely interface thing. I don't feel too strong about this but it seems a bit silly to introduce a whole different set of interface for this. e.g. if the user wanted to disable softlockup detection, it'd be weird to leave wq lockup detection running. The same goes for threshold. > Again, this looks like what the hung task detector is doing, which I > struggled with years ago to integrate with the lockup code because in the > end I had trouble re-using much of it. So, it's a stall detector and there are inherent similarities but the conditions tested are pretty different and it's a lot lighter. I'm not really sure what you're meaning to say. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/