-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kernel commit https://lore.kernel.org/lkml/[email protected]/ set `PERF_IP_FLAG_ASYNC` on trace end events. As per https://github.com/torvalds/linux/blob/7ee022567bf9e2e0b3cd92461a2f4986ecc99673/tools/perf/builtin-script.c#L1546 This means that where `perf` would have previously outputted `tr end jmp`, it now outputs `tr end async`. Adjust our regex to allow `async`, and treat it as a branch. Signed-off-by: Tudor Brindus <[email protected]>
- Loading branch information
Showing
4 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ open! Core | |
|
||
module Kind = struct | ||
type t = | ||
| Async | ||
| Call | ||
| Return | ||
| Syscall | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ open! Core | |
|
||
module Kind : sig | ||
type t = | ||
| Async | ||
| Call | ||
| Return | ||
| Syscall | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters