From: Greg Kroah-Hartman Date: Mon, 7 Oct 2019 09:42:10 +0000 (+0200) Subject: update comment in binder patch X-Git-Tag: v4.9.196~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a9719737b41caf909bd9e77f99c99bc7be0371c;p=thirdparty%2Fkernel%2Fstable-queue.git update comment in binder patch --- diff --git a/queue-4.4/android-binder-remove-waitqueue-when-thread-exits.patch b/queue-4.4/android-binder-remove-waitqueue-when-thread-exits.patch index f7dc9a5637a..cbf4caf0308 100644 --- a/queue-4.4/android-binder-remove-waitqueue-when-thread-exits.patch +++ b/queue-4.4/android-binder-remove-waitqueue-when-thread-exits.patch @@ -49,7 +49,7 @@ Signed-off-by: Greg Kroah-Hartman + * If this thread used poll, make sure we remove the waitqueue + * from any epoll data structures holding it with POLLFREE. + * waitqueue_active() is safe to use here because we're holding -+ * the inner lock. ++ * the global lock. + */ + if ((thread->looper & BINDER_LOOPER_STATE_POLL) && + waitqueue_active(&thread->wait)) { diff --git a/queue-4.9/android-binder-remove-waitqueue-when-thread-exits.patch b/queue-4.9/android-binder-remove-waitqueue-when-thread-exits.patch index 37f39f508cd..a6a220daa75 100644 --- a/queue-4.9/android-binder-remove-waitqueue-when-thread-exits.patch +++ b/queue-4.9/android-binder-remove-waitqueue-when-thread-exits.patch @@ -49,7 +49,7 @@ Signed-off-by: Greg Kroah-Hartman + * If this thread used poll, make sure we remove the waitqueue + * from any epoll data structures holding it with POLLFREE. + * waitqueue_active() is safe to use here because we're holding -+ * the inner lock. ++ * the global lock. + */ + if ((thread->looper & BINDER_LOOPER_STATE_POLL) && + waitqueue_active(&thread->wait)) {