hc
2023-12-09 958e46acc8e900e8569dd467c1af9b8d2d019394
kernel/tools/perf/scripts/perl/check-perf-trace.pl
....@@ -28,7 +28,7 @@
2828 sub irq::softirq_entry
2929 {
3030 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
31
- $common_pid, $common_comm,
31
+ $common_pid, $common_comm, $common_callchain,
3232 $vec) = @_;
3333
3434 print_header($event_name, $common_cpu, $common_secs, $common_nsecs,
....@@ -43,7 +43,7 @@
4343 sub kmem::kmalloc
4444 {
4545 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
46
- $common_pid, $common_comm,
46
+ $common_pid, $common_comm, $common_callchain,
4747 $call_site, $ptr, $bytes_req, $bytes_alloc,
4848 $gfp_flags) = @_;
4949
....@@ -92,7 +92,7 @@
9292 sub trace_unhandled
9393 {
9494 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
95
- $common_pid, $common_comm) = @_;
95
+ $common_pid, $common_comm, $common_callchain) = @_;
9696
9797 $unhandled{$event_name}++;
9898 }