]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
futex: fix futex_wait_setup key handling
authorDarren Hart <dvhltc@us.ibm.com>
Fri, 10 Apr 2009 16:50:05 +0000 (09:50 -0700)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 10 Apr 2009 20:04:24 +0000 (22:04 +0200)
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: Clark Williams <williams@redhat.com>
Signed-off-by: Darren Hart <dvhltc@us.ibm.com>
LKML-Reference: <20090410165005.14342.16973.stgit@Aeon>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/futex.c

index 041bf3ac4be9516aa8861a0f42635cb872f572eb..6d2daa46f9ffb515dabff21ce4c13c5d23346d76 100644 (file)
@@ -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);