diff --git a/drivers/android/binder.c b/drivers/android/binder.c index c413c2fd4608..1765a4f896e2 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c @@ -6531,6 +6531,10 @@ static void print_binder_proc(struct seq_file *m, seq_puts(m, " has delivered dead binder\n"); break; } + list_for_each_entry(w, &proc_wrapper(proc)->delivered_freeze, entry) { + seq_puts(m, " has delivered freeze binder\n"); + break; + } binder_inner_proc_unlock(proc); if (!print_all && m->count == header_pos) m->count = start_pos;