aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_kvm.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix bugs pointed out by syz-checkDmitry Vyukov2022-01-131-2/+0
| | | | Update #590
* sys/linux: update warn filesDmitry Vyukov2022-01-131-2/+10
| | | | | Regenerate warn files on the latest kernel commit fe8152b38d3 and latest syzkaller commit with fresh kernel config files.
* sys/linux: fix some warnings in descriptionsDmitry Vyukov2020-06-131-4/+0
| | | | | syz-check pointed to a new batch of bugs in descriptions. Fix them.
* sys/linux: regenerate .warn filesDmitry Vyukov2020-06-131-14/+7
| | | | | On latest kernel, with latest *.txt files and with kernels compiled with -fno-eliminate-unused-debug-types -fno-eliminate-unused-debug-symbols flags.
* sys/linux: update warn files on next-20200521Dmitry Vyukov2020-05-251-88/+69
|
* sys/linux: fix sigset_t/sigaction layout on armDmitry Vyukov2020-01-181-11/+11
| | | | Update #590
* tools/syz-check: also check arm/arm64Dmitry Vyukov2020-01-181-25/+93
| | | | | | | | | They mostly duplicate the warnings we already have for amd64/386. But uncovered few very interesting local things (e.g. epoll_event is packed only on amd64, so arm/arm64 layout is wrong, but 386 is correct because int64 alignment is different). Update #590
* sys/linux: fix 32-bit warningsDmitry Vyukov2019-12-231-11/+0
| | | | | | | Lots of interesting findings... Especially 2 byte uid/gid/pid. Update #590
* sys/linux: fix int64 alignment on 386Dmitry Vyukov2019-12-231-0/+1
| | | | | | | | | Turns out int64 alignment is 4 on 386... But on arm it's still 8. Another amusing finding thanks to syz-check. Update #590
* tools/syz-check: check amd64 and 386 at the same timeDmitry Vyukov2019-12-221-56/+66
| | | | Update #590
* sys/linux: fix 240 warnings in descriptionsDmitry Vyukov2019-12-201-3/+0
| | | | | | Sweeping fix of everything up to socket_netlink_route.txt. Update #590
* tools/syz-check: inject description compilation warningsDmitry Vyukov2019-12-201-0/+1
| | | | | | | | Currently we print them as part of `make genereate`, but nobody reads them, too much output each time. Don't print them in `make generate` and instead print in syz-check, the warn files are a good mechanism to handle "known warnings".
* pkg/compiler: fix incorrect alignment calculation for paddingDmitry Vyukov2019-12-181-3/+0
| | | | | | | | | | | | | | We assumed that for ConstType alignment is equal to size, which is perfectly reasonable for normal int8/16/32/64/ptr. However, padding is also represented by ConstType of arbitrary size, so if we added 157 bytes of padding that becomes alignment of the padding field and as the result of the whole struct. This affects very few structs, but quite radically and quite important structs. Discovered thanks to syz-check. Update #590
* sys/linux: another batch of syz-check fixesDmitry Vyukov2019-12-181-14/+5
| | | | Update #590
* tools/syz-check: don't print our/kernel field name twice if equalDmitry Vyukov2019-12-181-4/+4
|
* tools/syz-check: don't print line numbers for warningsDmitry Vyukov2019-12-181-70/+70
| | | | | Line numbers create huge diffs when lines change slightly. That's very unhandy b/c we want to look at added/removed warnings.
* tools/syz-check: add description checking utilityDmitry Vyukov2019-12-171-0/+70
syz-check parses vmlinux dwarf, extracts struct descriptions, compares them with what we have (size, fields, alignment, etc) and produces .warn files. This is first raw version, it can be improved in a number of ways. But it already helped to identify a critical issue #1542 and shows some wrong struct descriptions. Update #590