The patch titled Subject: signal: complete_signal: use __for_each_thread() has been added to the -mm mm-nonmm-unstable branch. Its filename is signal-complete_signal-use-__for_each_thread.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/signal-complete_signal-use-__for_each_thread.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Oleg Nesterov <oleg@xxxxxxxxxx> Subject: signal: complete_signal: use __for_each_thread() Date: Sat, 9 Sep 2023 18:45:37 +0200 do/while_each_thread should be avoided when possible. Link: https://lkml.kernel.org/r/20230909164537.GA11633@xxxxxxxxxx Signed-off-by: Oleg Nesterov <oleg@xxxxxxxxxx> Cc: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/signal.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/kernel/signal.c~signal-complete_signal-use-__for_each_thread +++ a/kernel/signal.c @@ -1058,12 +1058,11 @@ static void complete_signal(int sig, str signal->flags = SIGNAL_GROUP_EXIT; signal->group_exit_code = sig; signal->group_stop_count = 0; - t = p; - do { + __for_each_thread(signal, t) { task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK); sigaddset(&t->pending.signal, SIGKILL); signal_wake_up(t, 1); - } while_each_thread(p, t); + } return; } } _ Patches currently in -mm which might be from oleg@xxxxxxxxxx are introduce-__next_thread-fix-next_tid-vs-exec-race.patch change-next_thread-to-use-__next_thread-group_leader.patch change-thread_group_empty-to-use-task_struct-thread_node.patch kill-task_struct-thread_group.patch __kill_pgrp_info-simplify-the-calculation-of-return-value.patch fs-proc-do_task_stat-use-__for_each_thread.patch signal-complete_signal-use-__for_each_thread.patch getrusage-add-the-signal_struct-sig-local-variable.patch getrusage-use-__for_each_thread.patch taskstats-fill_stats_for_tgid-use-for_each_thread.patch