| .. | .. |
|---|
| 28 | 28 | sub irq::softirq_entry |
|---|
| 29 | 29 | { |
|---|
| 30 | 30 | my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, |
|---|
| 31 | | - $common_pid, $common_comm, |
|---|
| 31 | + $common_pid, $common_comm, $common_callchain, |
|---|
| 32 | 32 | $vec) = @_; |
|---|
| 33 | 33 | |
|---|
| 34 | 34 | print_header($event_name, $common_cpu, $common_secs, $common_nsecs, |
|---|
| .. | .. |
|---|
| 43 | 43 | sub kmem::kmalloc |
|---|
| 44 | 44 | { |
|---|
| 45 | 45 | my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, |
|---|
| 46 | | - $common_pid, $common_comm, |
|---|
| 46 | + $common_pid, $common_comm, $common_callchain, |
|---|
| 47 | 47 | $call_site, $ptr, $bytes_req, $bytes_alloc, |
|---|
| 48 | 48 | $gfp_flags) = @_; |
|---|
| 49 | 49 | |
|---|
| .. | .. |
|---|
| 92 | 92 | sub trace_unhandled |
|---|
| 93 | 93 | { |
|---|
| 94 | 94 | my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs, |
|---|
| 95 | | - $common_pid, $common_comm) = @_; |
|---|
| 95 | + $common_pid, $common_comm, $common_callchain) = @_; |
|---|
| 96 | 96 | |
|---|
| 97 | 97 | $unhandled{$event_name}++; |
|---|
| 98 | 98 | } |
|---|