Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934004AbdLVJLh (ORCPT ); Fri, 22 Dec 2017 04:11:37 -0500 Received: from mail-wm0-f45.google.com ([74.125.82.45]:34877 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933349AbdLVJLW (ORCPT ); Fri, 22 Dec 2017 04:11:22 -0500 X-Google-Smtp-Source: ACJfBotmWDUcqTqOQvGH6V26UAcEba+NnP1p2DN6inN3xa6OiZerIWORaXvLYvCiWNm/Im6A8wRQbjeI8JmGy23lnIM= MIME-Version: 1.0 Reply-To: mtk.manpages@gmail.com In-Reply-To: <20171222001554.GH1084507@devbig577.frc2.facebook.com> References: <20171222001554.GH1084507@devbig577.frc2.facebook.com> From: "Michael Kerrisk (man-pages)" Date: Fri, 22 Dec 2017 10:11:00 +0100 Message-ID: Subject: Re: Cgroups v2 thread mode "domain invalid" state To: Tejun Heo Cc: Peter Zijlstra , longman@redhat.com, lkml , linux-man , "open list:CONTROL GROUP (CGROUP)" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3162 Lines: 90 Hi Tejun, On 22 December 2017 at 01:15, Tejun Heo wrote: > Hello, > > On Wed, Dec 20, 2017 at 09:32:04PM +0100, Michael Kerrisk (man-pages) wrote: >> I did find the July 2017 mail thread >> "[PATCH 5/6] cgroup: implement cgroup v2 thread support" >> (https://marc.info/?t=150025735500001&r=1&w=2) >> where this cgroup type was discussed, but I must admit that I still >> don't get it. Instead of converting cgroups under a threaded subtree >> to "domain invalid" type, why can't they just be turned straight into >> "threaded" type? >> >> I guess another way of asking this question is: what possibilities >> does manually switching each "domain invalid" cgroup to "threaded" >> allow that wouldn't be allowed by immediately making all of the >> cgroups in a threaded subtree "threaded"? > > IIRC, there were two reasons. (Writing from memory, so I might not be > completely accurate.) > > * Consistency w/ the cgroups right under the root cgroup. Because > they can be both domains and threadroots, we can't switch the > children over to thread mode automatically. Doing that for cgroups > further down in the hierarchy would be really inconsistent. I don't get the above. I mean, if we have the following hierarchy, where R is the cgoup v2 mount point: R---A(d)------B(d) \ \----C(d) \ \ X(d)------Y(d) And we write "threaded" to A/cgroup.type, then we end up with: R---A(t)------B(di) \ \----C(di) \ \ X(d)------Y(d) (To be clear: "(d)" means "domain", "(di)" means "domain invalid", and "(t)" means "threaded".) But equally (in another world), that operation could have resulted in: R---A(t)------B(t) \ \----C(t) \ \ X(d)------Y(d) It's not clear to me how "Doing that for cgroups further down in the hierarchy would be really inconsistent", since in the current implementation, those same thread groups are converted to "domain invalid" type. What am I missing? But, regarding the next point: > * Possible extension to threadmode. If we figure out how to do mixed > mode further down in the hierarchy (and if there are actual use > cases which require that), automatically switching would be really > confusing. > > The invalid state while not the most convenient is straight forward > (only the operations which are explicitly asked are performed) and > keeps the door open for future changes. The "allowing for future" extensions idea makes some sense to me. One other point that occurred to me after I wrote my email yesterday was that if the threaded root reverts from being "domain threaded" to "domain" (because it no longer has "threaded" children AND either it has no member processes or it has no threaded controllers enabled), then the "domain invalid" descendants revert to type "domain". I'm not sure whether that detail also provides some rationale as to why all descendants of the threaded root cgroup aren't automatically converted to type "threaded". Any thoughts about that? Thanks, Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/