I am trying to deactivate the hardware prefetching as suggested here: How do I programatically disable hardware prefetching?
I am using a Xeon X7560 system. The current value in MSR #416 (0x1A0) is 0x850089.
# rdmsr -p 0 0x1A0
850089
To deactivate hardware prefetching, one must set the 9th bit. However, wrmsr throws the following error:
# wrmsr -p 0 0x1A0 0x850289
wrmsr:pwrite: Input/output error
What am I missing?
Thanks, Jan