Skip to content

Commit f3d301c

Browse files
Al GrantPeter Zijlstra
authored andcommitted
perf: correct SNOOPX field offset
perf_event.h has macros that define the field offsets in the data_src bitmask in perf records. The SNOOPX and REMOTE offsets were both 37. These are distinct fields, and the bitfield layout in perf_mem_data_src confirms that SNOOPX should be at offset 38. Fixes: 52839e6 ("perf tools: Add support for printing new mem_info encodings") Signed-off-by: Al Grant <al.grant@foss.arm.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Andi Kleen <ak@linux.intel.com> Link: https://lkml.kernel.org/r/4ac9f5cc-4388-b34a-9999-418a4099415d@foss.arm.com
1 parent 7cf726a commit f3d301c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/uapi/linux/perf_event.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ union perf_mem_data_src {
11961196

11971197
#define PERF_MEM_SNOOPX_FWD 0x01 /* forward */
11981198
/* 1 free */
1199-
#define PERF_MEM_SNOOPX_SHIFT 37
1199+
#define PERF_MEM_SNOOPX_SHIFT 38
12001200

12011201
/* locked instruction */
12021202
#define PERF_MEM_LOCK_NA 0x01 /* not available */

0 commit comments

Comments
 (0)