Skip to content

Commit

Permalink
futex/requeue: Remove unnecessary ‘NULL’ initialization from futex_pr…
Browse files Browse the repository at this point in the history
…oxy_trylock_atomic()

'top_waiter' is assigned unconditionally before first use,
so it does not need an initialization.

[ mingo: Created legible changelog. ]

Signed-off-by: Li zeming <zeming@nfschina.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20230725195047.3106-1-zeming@nfschina.com
  • Loading branch information
Li zeming authored and Ingo Molnar committed Oct 4, 2023
1 parent 5e0eb67 commit 01a99a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/futex/requeue.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ futex_proxy_trylock_atomic(u32 __user *pifutex, struct futex_hash_bucket *hb1,
union futex_key *key2, struct futex_pi_state **ps,
struct task_struct **exiting, int set_waiters)
{
struct futex_q *top_waiter = NULL;
struct futex_q *top_waiter;
u32 curval;
int ret;

Expand Down

0 comments on commit 01a99a7

Please sign in to comment.