summary refs log tree commit diff
path: root/kernel/futex.c
diff options
context:
space:
mode:
authorJangwoong Kim <6812skiii@gmail.com>2020-12-30 21:29:53 +0900
committerThomas Gleixner <tglx@linutronix.de>2021-01-28 13:20:18 +0100
commit0f9438503ea1312ef49be4d9762e0f0006546364 (patch)
tree3694a1fad3b76bbafe4892c563ae974de2dfd7a0 /kernel/futex.c
parent1ce53e2c2ac069e7b3c400a427002a70deb4a916 (diff)
downloadlinux-0f9438503ea1312ef49be4d9762e0f0006546364.tar.gz
futex: Remove unneeded gotos
Get rid of gotos that do not contain any cleanup. These were not removed in
commit 9180bd467f9a ("futex: Remove put_futex_key()").

Signed-off-by: Jangwoong Kim <6812skiii@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20201230122953.10473-1-6812skiii@gmail.com


Diffstat (limited to 'kernel/futex.c')
-rw-r--r--kernel/futex.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/kernel/futex.c b/kernel/futex.c
index d0775aab8da9..f3570a276990 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -3024,7 +3024,7 @@ retry:
 		 * Success, we're done! No tricky corner cases.
 		 */
 		if (!ret)
-			goto out_putkey;
+			return ret;
 		/*
 		 * The atomic access to the futex value generated a
 		 * pagefault, so retry the user-access and the wakeup:
@@ -3041,7 +3041,7 @@ retry:
 		 * wake_futex_pi has detected invalid state. Tell user
 		 * space.
 		 */
-		goto out_putkey;
+		return ret;
 	}
 
 	/*
@@ -3062,7 +3062,7 @@ retry:
 
 		default:
 			WARN_ON_ONCE(1);
-			goto out_putkey;
+			return ret;
 		}
 	}
 
@@ -3073,7 +3073,6 @@ retry:
 
 out_unlock:
 	spin_unlock(&hb->lock);
-out_putkey:
 	return ret;
 
 pi_retry: