Skip to content

Commit

Permalink
[CR] Fixed Intel' Prefetchers aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
cyring committed Dec 16, 2023
1 parent 28dcb85 commit 0a0daea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x86_64/corefreqd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1638,9 +1638,9 @@ void Technology_Update( RO(SHM_STRUCT) *RO(Shm),
RW(Proc)->L2_AMP_Prefetch,
RO(Proc)->PCORE_Mask) != 0;

RO(Shm)->Proc.Technology.L2_NLP_Prefetch = BITCMP_CC(LOCKLESS,
RO(Shm)->Proc.Technology.L2_NLP_Prefetch = BITWISEAND_CC(LOCKLESS,
RW(Proc)->L2_NLP_Prefetch,
RO(Proc)->ECORE_Mask);
RO(Proc)->ECORE_Mask) != 0;

RO(Shm)->Proc.Technology.L1_Stride_Pf = BITCMP_CC(LOCKLESS,
RW(Proc)->L1_Stride_Pf,
Expand All @@ -1662,9 +1662,9 @@ void Technology_Update( RO(SHM_STRUCT) *RO(Shm),
RW(Proc)->L2_UpDown_Pf,
RO(Proc)->DCU_Mask);

RO(Shm)->Proc.Technology.LLC_Streamer = BITCMP_CC(LOCKLESS,
RO(Shm)->Proc.Technology.LLC_Streamer = BITWISEAND_CC(LOCKLESS,
RW(Proc)->LLC_Streamer,
RO(Proc)->ECORE_Mask);
RO(Proc)->ECORE_Mask) != 0;

RO(Shm)->Proc.Technology.PowerMgmt = BITCMP_CC(LOCKLESS,
RW(Proc)->PowerMgmt,
Expand Down

0 comments on commit 0a0daea

Please sign in to comment.