aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_snd_control.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix sigset_t/sigaction layout on armDmitry Vyukov2020-01-181-2/+2
| | | | Update #590
* tools/syz-check: also check arm/arm64Dmitry Vyukov2020-01-181-0/+3
| | | | | | | | | 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: add NFNL_SUBSYS_ULOG descriptionsDmitry Vyukov2020-01-091-5/+3
|
* tools/syz-check: check amd64 and 386 at the same timeDmitry Vyukov2019-12-221-7/+7
| | | | 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".
* sys/linux: fix few bugsDmitry Vyukov2019-12-181-2/+0
| | | | Fix some descirptions disperancies with kernel and regenerate warnings on next-20191218.
* tools/syz-check: don't print line numbers for warningsDmitry Vyukov2019-12-181-8/+8
| | | | | 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/+8
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