aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_cdrom.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: add CDROM_MEDIA_CHANGED ioctlDenis Efremov2021-11-081-0/+7
| | | | | | | Add description for: 67f1e027c270 drivers/cdrom: improved ioctl for media change detection Signed-off-by: Denis Efremov <efremov@linux.com>
* pkg/compiler: ensure consistency of syscall argument typesDmitry Vyukov2020-03-171-4/+2
| | | | | | | | | | | | | | | | | | Ensure that we don't have conflicting sizes for the same argument of the same syscall, e.g.: foo$1(a int16) foo$2(a int32) This is useful for several reasons: - we will be able avoid morphing syscalls into other syscalls - we will be able to figure out more precise sizes for args (lots of them are implicitly intptr, which is the largest type on most important arches) - found few bugs in linux descriptions Update #477 Update #502
* sys/linux: fix 240 warnings in descriptionsDmitry Vyukov2019-12-201-2/+6
| | | | | | Sweeping fix of everything up to socket_netlink_route.txt. Update #590
* sys/linux: another batch of syz-check fixesDmitry Vyukov2019-12-181-3/+1
| | | | Update #590
* sys/linux: use openat for /dev/cdromDmitry Vyukov2019-11-291-1/+2
| | | | | No need to use syz_open_dev here, openat will do. Also add /dev/cdrom1 b/c qemu -machine q35 creates cdrom1 instead of cdrom.
* sys/linux: fix up some int64 syscall argsDmitry Vyukov2019-11-071-3/+3
| | | | | See the discussion on #1493. These args are actually intptr's.
* sys/linux: rename dev descriptions filesAndrey Konovalov2019-02-011-0/+343
Prefix file names of descriptions of /dev/* files with dev_. And give some of them more appropriate names.