]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
futex: Set task::futex_state to DEAD right after handling futex exit
authorThomas Gleixner <tglx@linutronix.de>
Mon, 1 Feb 2021 10:01:37 +0000 (10:01 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2021 22:19:49 +0000 (23:19 +0100)
commitc2fd4e11980fd43c224e98c54b801f14dde495ce
tree21b96b9c475feb99a50378a3cd88cace2635da7b
parent8a16d8a3528ec1d72495b098548a034dd5f328e1
futex: Set task::futex_state to DEAD right after handling futex exit

commit f24f22435dcc11389acc87e5586239c1819d217c upstream.

Setting task::futex_state in do_exit() is rather arbitrarily placed for no
reason. Move it into the futex code.

Note, this is only done for the exit cleanup as the exec cleanup cannot set
the state to FUTEX_STATE_DEAD because the task struct is still in active
use.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20191106224556.439511191@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/exit.c
kernel/futex.c