aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/vnet.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: update warn filesDmitry Vyukov2022-01-131-3/+0
| | | | | Regenerate warn files on the latest kernel commit fe8152b38d3 and latest syzkaller commit with fresh kernel config files.
* sys/linux: regenerate .warn filesDmitry Vyukov2020-06-131-1/+2
| | | | | 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-0/+2
|
* tools/syz-check: add limited checking of varlen structsDmitry Vyukov2020-01-231-1/+2
| | | | | | | | Stop at the fist varlen field, but check the preceeding ones. Frequently the varlen array is the last field, so we should get good checking for these cases. Update #590
* sys/linux: add netlabel descriptionsDmitry Vyukov2020-01-031-2/+2
|
* tools/syz-check: check amd64 and 386 at the same timeDmitry Vyukov2019-12-221-63/+63
| | | | Update #590
* sys/linux: fix warnings in template definitionDmitry Vyukov2019-12-221-2/+0
| | | | Update #590
* tools/syz-check: check templatesDmitry Vyukov2019-12-221-0/+12
| | | | | | Also rename some netfilter types to eliminate massive amounts of template warnings. Update #590
* sys/linux: another batch of warning fixesDmitry Vyukov2019-12-221-19/+3
| | | | | | The only remaining part now is dev_video4linux.txt Update #590
* tools/syz-check: don't print line numbers for warningsDmitry Vyukov2019-12-181-69/+69
| | | | | 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/+69
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