Skip to content

Commit a03613a

Browse files
soramichiopcm
authored andcommitted
Make pcm-numa work for Skylake-based Xeon processors
1 parent 11eacbf commit a03613a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpucounters.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5734,9 +5734,9 @@ void PCM::setupCustomCoreEventsForNuma(PCM::ExtendedCustomCoreEventDescription&
57345734
break;
57355735
case PCM::SKX:
57365736
// OFFCORE_RESPONSE.ALL_REQUESTS.L3_MISS_LOCAL_DRAM.ANY_SNOOP
5737-
conf.OffcoreResponseMsrValue[0] = 0x3FC0009FFF | (1 << 26);
5737+
conf.OffcoreResponseMsrValue[0] = 0x3FC0008FFF | (1 << 26);
57385738
// OFFCORE_RESPONSE.ALL_REQUESTS.L3_MISS_REMOTE_(HOP0,HOP1,HOP2P)_DRAM.ANY_SNOOP
5739-
conf.OffcoreResponseMsrValue[1] = 0x3FC0009FFF | (1 << 27) | (1 << 28) | (1 << 29);
5739+
conf.OffcoreResponseMsrValue[1] = 0x3FC0008FFF | (1 << 27) | (1 << 28) | (1 << 29);
57405740
break;
57415741
default:
57425742
throw UnsupportedProcessorException();

0 commit comments

Comments
 (0)