On 10-May 16:35, Leo Yan wrote:
Hi Patrick,
Hi Leo,
[ + eas-dev ]
With non-root user in Android, I cannot add PID to SchedTune's cgroup; At beginning I thought it's related with cgroup's file node attribution, so tried to use "root" user to change permission with "a+rwx", even so still cannot set cgroup's node by non-root user.
hikey:/ $ su hikey:/ # chmod a+rwx /sys/fs/cgroup/stune/performance/cgroup.procs hikey:/ # exit
hikey:/ $ echo 1937 > /sys/fs/cgroup/stune/performance/cgroup.procs hikey:/ $ cat /sys/fs/cgroup/stune/performance/cgroup.procs
That's strange, provided that you have node permission (and task 1937 is still alive) what you are doing should work.
Just one minor note, cgroup.procs reports only TGIDs. If 1937 is a thread of a main process, you should find it listed just under tasks. Thus, usually it's better to check using:
hikey:/ $ cat /sys/fs/cgroup/stune/performance/tasks
Do you have suggestion for what's the formal method for adding PID to SchedTune's cgroup with non-root user?
Here are some guidelines: - use cgroup.procs to move all the tasks of a thread group - use tasks to move a single task, specified by PID - use tasks to check the PIDs of all the tasks in that group
Thanks, Leo Yan
-- #include <best/regards.h>
Patrick Bellasi