Skip to content

Commit 171efc7

Browse files
ArBin1020Peter Zijlstra
authored andcommitted
x86/ibs: Fix typo in dc_l2tlb_miss comment
The comment for dc_l2tlb_miss incorrectly describes it as a "hit". This contradicts the field name and the actual bit definition. Fix the comment to correctly describe it as a "miss". Signed-off-by: Xiang-Bin Shi <eric91102091@gmail.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://patch.msgid.link/20260123075719.160734-1-eric91102091@gmail.com
1 parent d55c571 commit 171efc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • arch/x86/include/asm/amd

arch/x86/include/asm/amd/ibs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ union ibs_op_data3 {
110110
__u64 ld_op:1, /* 0: load op */
111111
st_op:1, /* 1: store op */
112112
dc_l1tlb_miss:1, /* 2: data cache L1TLB miss */
113-
dc_l2tlb_miss:1, /* 3: data cache L2TLB hit in 2M page */
113+
dc_l2tlb_miss:1, /* 3: data cache L2TLB miss in 2M page */
114114
dc_l1tlb_hit_2m:1, /* 4: data cache L1TLB hit in 2M page */
115115
dc_l1tlb_hit_1g:1, /* 5: data cache L1TLB hit in 1G page */
116116
dc_l2tlb_hit_2m:1, /* 6: data cache L2TLB hit in 2M page */

0 commit comments

Comments
 (0)