Merge tag 'v4.4.161' into linux-linaro-lsk-v4.4

This is the 4.4.161 stable release
This commit is contained in:
Mark Brown
2018-10-15 10:19:18 +01:00
32 changed files with 439 additions and 234 deletions

View File

@@ -4081,7 +4081,11 @@ int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
*/
do {
css_task_iter_start(&from->self, &it);
task = css_task_iter_next(&it);
do {
task = css_task_iter_next(&it);
} while (task && (task->flags & PF_EXITING));
if (task)
get_task_struct(task);
css_task_iter_end(&it);