Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

binder: fix BINDER_WORK_CLEAR_FREEZE_NOTIFICATION debug logs

proc 699
context binder-test
thread 699: l 00 need_return 0 tr 0
ref 25: desc 1 node 20 s 1 w 0 d 00000000c03e09a3
unknown work: type 11

proc 640
context binder-test
thread 640: l 00 need_return 0 tr 0
ref 8: desc 1 node 3 s 1 w 0 d 000000002bb493e1
has cleared freeze notification

Fixes: d579b04a52a1 ("binder: frozen notification")
Cc: stable@vger.kernel.org
Suggested-by: Alice Ryhl <aliceryhl@google.com>
Signed-off-by: Carlos Llamas <cmllamas@google.com>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Acked-by: Todd Kjos <tkjos@google.com>
Link: https://lore.kernel.org/r/20240926233632.821189-6-cmllamas@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Carlos Llamas and committed by
Greg Kroah-Hartman
595ea72e 830d7db7

+3
+3
drivers/android/binder.c
··· 6411 6411 case BINDER_WORK_FROZEN_BINDER: 6412 6412 seq_printf(m, "%shas frozen binder\n", prefix); 6413 6413 break; 6414 + case BINDER_WORK_CLEAR_FREEZE_NOTIFICATION: 6415 + seq_printf(m, "%shas cleared freeze notification\n", prefix); 6416 + break; 6414 6417 default: 6415 6418 seq_printf(m, "%sunknown work: type %d\n", prefix, w->type); 6416 6419 break;