diff options
| author | Vikram Narayanan <vikram186@gmail.com> | 2021-10-27 00:52:34 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-11-18 14:32:23 +0100 |
| commit | 31a30fc092d1c25b565a00465f075408677e8c54 (patch) | |
| tree | f3f552eeb093c0a0663263f12824f3648bde5cf6 /sys/linux/init_test.go | |
| parent | 985076f2cce88f048e83459b99954a86a3f50cf5 (diff) | |
sys/linux: neutralize ioctl for /dev/msr
Diffstat (limited to 'sys/linux/init_test.go')
| -rw-r--r-- | sys/linux/init_test.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/linux/init_test.go b/sys/linux/init_test.go index 201ce762b..ed4cf03a1 100644 --- a/sys/linux/init_test.go +++ b/sys/linux/init_test.go @@ -132,5 +132,18 @@ syz_open_dev$tty1(0xc, 0x4, 0x4) syz_open_dev$tty1(0xc, 0x4, 0x1) `, }, + { + In: `syz_open_dev$MSR(0x0, 0x0, 0x0)`, + }, + { + In: ` +ioctl$X86_IOC_RDMSR_REGS(0xa, 0xc02063a0, 0x0) +ioctl$X86_IOC_RDMSR_REGS(0xa, 0xc02063a1, 0x0) +`, + Out: ` +ioctl$X86_IOC_RDMSR_REGS(0xa, 0xc02063a0, 0x0) +ioctl$X86_IOC_RDMSR_REGS(0xa, 0xc02063a0, 0x0) +`, + }, }) } |
