diff options
| author | Jani Nikula <jani.nikula@intel.com> | 2025-06-09 12:40:46 +0300 | 
|---|---|---|
| committer | Jani Nikula <jani.nikula@intel.com> | 2025-06-09 12:40:46 +0300 | 
| commit | 34c55367af96f62e89221444f04487440ebc6487 (patch) | |
| tree | fdb36ba67d7dea09455b55037e26043b7e051ef9 /tools/perf/builtin-script.c | |
| parent | 7247efca0dcbc8ac6147db9200ed1549c0662465 (diff) | |
| parent | 19272b37aa4f83ca52bdf9c16d5d81bdd1354494 (diff) | |
| download | linux-34c55367af96f62e89221444f04487440ebc6487.tar.xz | |
Merge drm/drm-next into drm-intel-next
Sync to v6.16-rc1, among other things to get the fixed size GENMASK_U*()
and BIT_U*() macros.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'tools/perf/builtin-script.c')
| -rw-r--r-- | tools/perf/builtin-script.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index 9b16df881af8..6c3bf74dd78c 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c @@ -680,7 +680,7 @@ static int perf_session__check_output_opt(struct perf_session *session)  		evlist__for_each_entry(session->evlist, evsel) {  			not_pipe = true; -			if (evsel__has_callchain(evsel)) { +			if (evsel__has_callchain(evsel) || evsel__is_offcpu_event(evsel)) {  				use_callchain = true;  				break;  			} @@ -2295,7 +2295,7 @@ static void process_event(struct perf_script *script,  	else if (PRINT_FIELD(BRSTACKOFF))  		perf_sample__fprintf_brstackoff(sample, thread, evsel, fp); -	if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT)) +	if (evsel__is_bpf_output(evsel) && !evsel__is_offcpu_event(evsel) && PRINT_FIELD(BPF_OUTPUT))  		perf_sample__fprintf_bpf_output(sample, fp);  	perf_sample__fprintf_insn(sample, evsel, attr, thread, machine, fp, al);  | 
