Message ID | 20190520030140.203605-2-alex.shi@linux.alibaba.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [v2,1/3] kselftest/cgroup: fix unexpected testing failure on test_memcontrol | expand |
Hello, All three patches look good to me. Please feel free to add my acked-by. Shuah, should I route these through cgroup tree or would the kselftest tree be a better fit? Thanks.
On 5/24/19 3:40 PM, Tejun Heo wrote: > Hello, > > All three patches look good to me. Please feel free to add my > acked-by. Shuah, should I route these through cgroup tree or would > the kselftest tree be a better fit? > > Thanks. > Tejun, I can take them through kselftest tree. thanks, -- Shuah
On 5/24/19 3:44 PM, shuah wrote: > On 5/24/19 3:40 PM, Tejun Heo wrote: >> Hello, >> >> All three patches look good to me. Please feel free to add my >> acked-by. Shuah, should I route these through cgroup tree or would >> the kselftest tree be a better fit? >> >> Thanks. >> > > > Tejun, I can take them through kselftest tree. > Alex, patches 1/3 and 2/3 failed checkpatch. Could you please the warns and send v3. Go ahead and send all v3 for all 3 patches thanks, -- Shuah
On 2019/5/25 8:06 上午, shuah wrote: > Alex, > > patches 1/3 and 2/3 failed checkpatch. Could you please the warns > and send v3. Go ahead and send all v3 for all 3 patches fixed and rent. Thanks a lot! Alex
diff --git a/tools/testing/selftests/cgroup/test_memcontrol.c b/tools/testing/selftests/cgroup/test_memcontrol.c index 6f339882a6ca..73612d604a2a 100644 --- a/tools/testing/selftests/cgroup/test_memcontrol.c +++ b/tools/testing/selftests/cgroup/test_memcontrol.c @@ -1205,6 +1205,10 @@ int main(int argc, char **argv) if (cg_read_strstr(root, "cgroup.controllers", "memory")) ksft_exit_skip("memory controller isn't available\n"); + if (cg_read_strstr(root, "cgroup.subtree_control", "memory")) + if (cg_write(root, "cgroup.subtree_control", "+memory")) + ksft_exit_skip("Failed to set root memory controller\n"); + for (i = 0; i < ARRAY_SIZE(tests); i++) { switch (tests[i].fn(root)) { case KSFT_PASS: