Skip to content
  • Tejun Heo's avatar
    cgroup: implement CSS_TASK_ITER_THREADED · 450ee0c1
    Tejun Heo authored
    
    
    cgroup v2 is in the process of growing thread granularity support.
    Once thread mode is enabled, the root cgroup of the subtree serves as
    the dom_cgrp to which the processes of the subtree conceptually belong
    and domain-level resource consumptions not tied to any specific task
    are charged.  In the subtree, threads won't be subject to process
    granularity or no-internal-task constraint and can be distributed
    arbitrarily across the subtree.
    
    This patch implements a new task iterator flag CSS_TASK_ITER_THREADED,
    which, when used on a dom_cgrp, makes the iteration include the tasks
    on all the associated threaded css_sets.  "cgroup.procs" read path is
    updated to use it so that reading the file on a proc_cgrp lists all
    processes.  This will also be used by controller implementations which
    need to walk processes or tasks at the resource domain level.
    
    Task iteration is implemented nested in css_set iteration.  If
    CSS_TASK_ITER_THREADED is specified, after walking tasks of each
    !threaded css_set, all the associated threaded css_sets are visited
    before moving onto the next !threaded css_set.
    
    v2: ->cur_pcset renamed to ->cur_dcset.  Updated for the new
        enable-threaded-per-cgroup behavior.
    
    Signed-off-by: default avatarTejun Heo <tj@kernel.org>
    450ee0c1