diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-21 13:14:53 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-21 13:14:53 +0200 |
| commit | d9c5cfb3fe1d3fc77eaffffa3a04cd538b698bf9 (patch) | |
| tree | 342328c516eabfc6ee2673bff6d87da68e332a2f /internal/flags/flags.go | |
| parent | b766efdd3547b4f8a0d0374dafb83b6832d6e43e (diff) | |
Enable open_by_handle_at tracepoint
Amp-Thread-ID: https://ampcode.com/threads/T-019c7fd9-5870-77b7-9909-3eb7550d17bb
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'internal/flags/flags.go')
| -rw-r--r-- | internal/flags/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/flags/flags.go b/internal/flags/flags.go index de0e74f..ebb1eef 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -111,7 +111,7 @@ func parse() { // disabledTracepoints is a list of tracepoints that should not be attached due to wider isses. // Here, the BPF programs wouldn't load otherwise due to CO-RE issues. // TODO: Try out once in a while whether it works again with newer kernel versions. - furtherExcludes := []string{".*_name_to_handle_at", ".*_open_by_handle_at"} + furtherExcludes := []string{".*_name_to_handle_at"} for _, exclude := range furtherExcludes { fmt.Println("WARNING: Hard-excluding ", exclude) singleton.TracepointsToExclude = append(singleton.TracepointsToExclude, regexp.MustCompile(exclude)) |
