OSDN Git Service

binder: add missing binder_unlock()
authorEric Biggers <ebiggers@google.com>
Mon, 26 Feb 2018 18:56:45 +0000 (10:56 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Feb 2018 09:18:33 +0000 (10:18 +0100)
commitfebf108e6c82d981ac6306978129dccb75db8b64
treec8b76b4ceb6368d07d655b91bd660fc182e0ab79
parent65aeceb58fe4e49dc1e4a581296e21cc5186ce6d
binder: add missing binder_unlock()

When commit 4be5a2810489 ("binder: check for binder_thread allocation
failure in binder_poll()") was applied to 4.4-stable and 4.9-stable it
was forgotten to release the global binder lock in the new error path.
The global binder lock wasn't removed until v4.14, by commit
a60b890f607d ("binder: remove global binder lock").

Fix the new error path to release the lock.

Reported-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/android/binder.c