Hello, Linus. Nothing too interesting. It adds cpu controller selftests and there are a couple code cleanup patches. Thanks. The following changes since commit 281b9d9a4b02229b602a14f7540206b0fbe4134f: Merge branch 'akpm' (patches from Andrew) (2022-04-22 10:10:43 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-5.19 for you to fetch changes up to b154a017c92011d8f71ce804583e5f9c3d90bb9a: cgroup: remove the superfluous judgment (2022-05-19 21:49:45 -1000) ---------------------------------------------------------------- David Vernet (9): cgroup: Add new test_cpu.c test suite in cgroup selftests cgroup: Add test_cpucg_stats() testcase to cgroup cpu selftests cgroup: Add test_cpucg_weight_overprovisioned() testcase cgroup: Add test_cpucg_weight_underprovisioned() testcase cgroup: Adding test_cpucg_nested_weight_overprovisioned() testcase cgroup: Add test_cpucg_nested_weight_underprovisioned() testcase cgroup: Add test_cpucg_max() testcase cgroup: Add test_cpucg_max_nested() testcase cgroup: Add config file to cgroup selftest suite Phil Auld (1): kselftest/cgroup: fix test_stress.sh to use OUTPUT dir Shida Zhang (1): cgroup: remove the superfluous judgment Waiman Long (1): kseltest/cgroup: Make test_stress.sh work if run interactively Xiu Jianfeng (1): cgroup: Make cgroup_debug static kernel/cgroup/cgroup-internal.h | 1 - kernel/cgroup/cgroup.c | 4 +- tools/testing/selftests/cgroup/.gitignore | 1 + tools/testing/selftests/cgroup/Makefile | 2 + tools/testing/selftests/cgroup/cgroup_util.c | 12 + tools/testing/selftests/cgroup/cgroup_util.h | 4 + tools/testing/selftests/cgroup/config | 8 + tools/testing/selftests/cgroup/test_cpu.c | 726 ++++++++++++++++++++++++++ tools/testing/selftests/cgroup/test_stress.sh | 2 +- 9 files changed, 756 insertions(+), 4 deletions(-) create mode 100644 tools/testing/selftests/cgroup/config create mode 100644 tools/testing/selftests/cgroup/test_cpu.c -- tejun