From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=MAILING_LIST_MULTI,SPF_PASS, USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F22D3C43441 for ; Wed, 14 Nov 2018 10:30:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 991F02086A for ; Wed, 14 Nov 2018 10:30:24 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 991F02086A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732673AbeKNUdC (ORCPT ); Wed, 14 Nov 2018 15:33:02 -0500 Received: from mx2.suse.de ([195.135.220.15]:45756 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726823AbeKNUdC (ORCPT ); Wed, 14 Nov 2018 15:33:02 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 73514AFE4; Wed, 14 Nov 2018 10:30:20 +0000 (UTC) Date: Wed, 14 Nov 2018 11:30:14 +0100 From: Michal Hocko To: Chanho Min Cc: 'Oleg Nesterov' , "'Rafael J. Wysocki'" , 'Pavel Machek' , 'Len Brown' , 'Andrew Morton' , "'Eric W. Biederman'" , 'Christian Brauner' , 'Anna-Maria Gleixner' , 'Alexander Viro' , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, 'Seungho Park' , 'Inkyu Hwang' , 'Donghwan Jung' , 'Jongsung Kim' Subject: Re: [PATCH v2] exec: make de_thread() freezable Message-ID: <20181114103014.GN23419@dhcp22.suse.cz> References: <1541994885-20059-1-git-send-email-chanho.min@lge.com> <20181113145339.GD16182@dhcp22.suse.cz> <20181113161858.GE30990@redhat.com> <20181113180058.GT15120@dhcp22.suse.cz> <014a01d47c03$6b64eef0$422eccd0$@lge.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <014a01d47c03$6b64eef0$422eccd0$@lge.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed 14-11-18 19:18:42, Chanho Min wrote: > > > > It's been some time since I have looked into this code so bear with > me. > > > > One thing is not really clear to me. Why does it help to exclude this > > > > particular task from the freezer > > > > > > we don't exclude it, > > > > > > > when it is not sleeping in the freezer. > > > > > > Yes, it is not sleeping in __refrigerator(), but it does > > > > > > schedule(); > > > freezer_count(); > > > > > > so it will enter __refrigerator() right after wakeup. If it won't be > > woken > > > up we do not care, we can consider it "frozen". > > > > Right, but this is just silencing the freezing code to exclude this > > task, right? > > > > > > I can see how other threads need to be zapped and TASK_WAKEKILL > > doesn't > > > > do that but shouldn't we fix that instead? > > > > > > Not sure I understand, but unlikely we can (or want) to make > > __refrigerator() > > > killable. > > > > Why would that be a problem. If the kill is fatal then why to keep the > > killed task in the fridge? > > > > Is it different between 'the killed task is frozen' and '__refrigerator() > is killable'? > From a general '__refrigerator()' implementation point of view I know that > it should not be killable. Is that because there are many paths that do not terminate right after the task get out of the fridge? Like the signal path? > > > Otherwise, how can we fix that? > > > > We can mark all threads PF_NOFREEZE and wake them up. This would require > > some more changes of course but wouldn't that be a more appropriate > > solution? Do we want to block exec for ever just because some threads > > are in the fridge? > > > > IMHO, It seems to be difficult and buggy to control with PF_NOFREEZE. > Because, > The sub-thread can freeze and receive SIG_KILL before the marking of > PF_NOFREEZE > and it should be freezable in other cases. But we do control the ordering in this path no? > I don't understand why it isn't appropriate for exec to block. The > exec can freeze. When tasks are thawed, the killed sub-thread will die > and wake de_thread(). The exec will continue to work from resume. Because this is fragile. I haven't checked the full set of resources the task holds when in this path but I can imagine we can introduce lock dependency on freezing really easily. -- Michal Hocko SUSE Labs