Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cgroup: css_task_iter_skip()'d iterators must be advanced before acce…
…ssed b636fd3 ("cgroup: Implement css_task_iter_skip()") introduced css_task_iter_skip() which is used to fix task iterations skipping dying threadgroup leaders with live threads. Skipping is implemented as a subportion of full advancing but css_task_iter_next() forgot to fully advance a skipped iterator before determining the next task to visit causing it to return invalid task pointers. Fix it by making css_task_iter_next() fully advance the iterator if it has been skipped since the previous iteration. Signed-off-by: Tejun Heo <[email protected]> Reported-by: syzbot Link: http://lkml.kernel.org/r/[email protected] Fixes: b636fd3 ("cgroup: Implement css_task_iter_skip()")
- Loading branch information