Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5a2a0c7 authored by Darren Hart's avatar Darren Hart Committed by Thomas Gleixner
Browse files

futex: fix futex_wait_setup key handling



If the get_futex_key() call were to fail, the existing code would
try and put_futex_key() prior to returning.  This patch makes sure
we only put_futex_key() if get_futex_key() succeeded.

Reported-by: default avatarClark Williams <williams@redhat.com>
Signed-off-by: default avatarDarren Hart <dvhltc@us.ibm.com>
LKML-Reference: <20090410165005.14342.16973.stgit@Aeon>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent d2de6888
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1668,7 +1668,7 @@ retry:
	q->key = FUTEX_KEY_INIT;
	ret = get_futex_key(uaddr, fshared, &q->key);
	if (unlikely(ret != 0))
		goto out;
		return ret;

retry_private:
	*hb = queue_lock(q);