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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4ED2EC761A6 for ; Tue, 4 Apr 2023 13:54:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235783AbjDDNyM (ORCPT ); Tue, 4 Apr 2023 09:54:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52172 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235747AbjDDNxl (ORCPT ); Tue, 4 Apr 2023 09:53:41 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 12F9249C0 for ; Tue, 4 Apr 2023 06:52:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1680616364; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2t022cV29B7Zbre5ZWJdAks4cSokwANFRg/jjQH6iKk=; b=SDmoxT4S4XKH+97lmOoAZ40I5BKpsPNcdfV9O6lJ4pDvg+bt6Z/sclUL7KTCbfYhEXMMvq 4NvgGyBTE5JOT6R7WKurQz4VLwB63mOlDJ3fJkUJN4JwldcSiMffRL8bdA00NKAJJWJbN6 xpOpivupPBcHXRxFXmN6GPyqKQX3Tm8= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-630-12iwtGryPiqol-iNg5cCTw-1; Tue, 04 Apr 2023 09:52:39 -0400 X-MC-Unique: 12iwtGryPiqol-iNg5cCTw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 6F4463855561; Tue, 4 Apr 2023 13:52:38 +0000 (UTC) Received: from [10.22.32.153] (unknown [10.22.32.153]) by smtp.corp.redhat.com (Postfix) with ESMTP id D3BF82166B26; Tue, 4 Apr 2023 13:52:37 +0000 (UTC) Message-ID: Date: Tue, 4 Apr 2023 09:52:37 -0400 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Subject: Re: [PATCH 1/3] cgroup/cpuset: Make cpuset_fork() handle CLONE_INTO_CGROUP properly Content-Language: en-US To: =?UTF-8?Q?Michal_Koutn=c3=bd?= Cc: Tejun Heo , Zefan Li , Johannes Weiner , Christian Brauner , cgroups@vger.kernel.org, linux-kernel@vger.kernel.org, Juri Lelli , Dietmar Eggemann , gscrivan@redhat.com References: <20230331145045.2251683-1-longman@redhat.com> <20230331145045.2251683-2-longman@redhat.com> <20230403165523.aphsec2epqi72k27@blackpad> <20230404091953.tcu3zg7npstk3ztc@blackpad> From: Waiman Long In-Reply-To: <20230404091953.tcu3zg7npstk3ztc@blackpad> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 4/4/23 05:19, Michal Koutný wrote: > On Mon, Apr 03, 2023 at 01:18:42PM -0400, Waiman Long wrote: >> 1) PF_NO_SETAFFINITY flag - which won't be set in the case of fork() as it >> is for kthread only. >> 2) DL bandwidth - Juri has a cpuset outstanding to modify the way this check >> is being done. I want to wait until it is settled before tackling this, if >> necessary. > BTW what about CLONE_INTO_CGROUP where the target cpuset has empty > effective cpuset? Good point. That will require a can_fork() method then. I will look into that. > >> 3) security_task_setscheduler() - the CLONE_INTO_CGROUP code has already >> checked that, we don't need to duplicate the check. > Not sure what this refers to. It is just checking of the task the has privilege of running into that cgroup. > >> So we don't need a can_fork() check for now. > Anyway, good breakdown. Could you please add it to the commit message > too? Yes, I can put that into the commit log. Cheers, Longman > Regards, > Michal