Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10a0e9ee authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cgroup: Fix deadlock in cpu hotplug path"

parents ddfb44af 49b74f16
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -4407,7 +4407,11 @@ int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
	 */
	do {
		css_task_iter_start(&from->self, &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);