drm/nouveau: fix kernel-doc comments
[drm/drm-misc.git] / Documentation / trace / events-msr.rst
blob35d06dc66bc21b3c1fbd4fb767b8e972664656d9
1 ================
2 MSR Trace Events
3 ================
5 The x86 kernel supports tracing most MSR (Model Specific Register) accesses.
6 To see the definition of the MSRs on Intel systems please see the SDM
7 at https://www.intel.com/sdm (Volume 3)
9 Available trace points:
11 /sys/kernel/tracing/events/msr/
13 Trace MSR reads:
15 read_msr
17   - msr: MSR number
18   - val: Value written
19   - failed: 1 if the access failed, otherwise 0
22 Trace MSR writes:
24 write_msr
26   - msr: MSR number
27   - val: Value written
28   - failed: 1 if the access failed, otherwise 0
31 Trace RDPMC in kernel:
33 rdpmc
35 The trace data can be post processed with the postprocess/decode_msr.py script::
37   cat /sys/kernel/tracing/trace | decode_msr.py /usr/src/linux/include/asm/msr-index.h
39 to add symbolic MSR names.