July 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 | 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
01: #ifndef _ASM_X86_MSR_H 02: #define _ASM_X86_MSR_H 03: 04: #include <asm/msr-index.h> 05: 06: #ifndef __ASSEMBLY__ 07: 08: #include <linux/types.h> 09: #include <linux/ioctl.h> 10: 11: #define X86_IOC_RDMSR_REGS _IOWR('c', 0xA0, __u32[8]) 12: #define X86_IOC_WRMSR_REGS _IOWR('c', 0xA1, __u32[8]) 13: 14: #endif /* __ASSEMBLY__ */ 15: #endif /* _ASM_X86_MSR_H */ 16: