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: add delivered_freeze to debugfs output

Add the pending proc->delivered_freeze work to the debugfs output. This
information was omitted in the original implementation of the freeze
notification and can be valuable for debugging issues.

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

authored by

Carlos Llamas and committed by
Greg Kroah-Hartman
cb2aeb2e 1db76ec2

+4
+4
drivers/android/binder.c
··· 6569 6569 seq_puts(m, " has delivered dead binder\n"); 6570 6570 break; 6571 6571 } 6572 + list_for_each_entry(w, &proc->delivered_freeze, entry) { 6573 + seq_puts(m, " has delivered freeze binder\n"); 6574 + break; 6575 + } 6572 6576 binder_inner_proc_unlock(proc); 6573 6577 if (!print_all && m->count == header_pos) 6574 6578 m->count = start_pos;