[tip:,locking/core] futex/requeue: Remove unnecessary ‘NULL’ initialization from futex_proxy_trylock_atomic()

Message ID 169643577653.3135.1339527957884113798.tip-bot2@tip-bot2
State New
Headers
Series [tip:,locking/core] futex/requeue: Remove unnecessary ‘NULL’ initialization from futex_proxy_trylock_atomic() |

Commit Message

tip-bot2 for Thomas Gleixner Oct. 4, 2023, 4:09 p.m. UTC
  The following commit has been merged into the locking/core branch of tip:

Commit-ID:     01a99a750a4f414c221781de2e5570e0ceae04b5
Gitweb:        https://git.kernel.org/tip/01a99a750a4f414c221781de2e5570e0ceae04b5
Author:        Li zeming <zeming@nfschina.com>
AuthorDate:    Wed, 26 Jul 2023 03:50:47 +08:00
Committer:     Ingo Molnar <mingo@kernel.org>
CommitterDate: Wed, 04 Oct 2023 18:04:47 +02:00

futex/requeue: Remove unnecessary ‘NULL’ initialization from futex_proxy_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
---
 kernel/futex/requeue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/kernel/futex/requeue.c b/kernel/futex/requeue.c
index a0a7995..16a3645 100644
--- a/kernel/futex/requeue.c
+++ b/kernel/futex/requeue.c
@@ -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;