aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_snd_midi.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix bugs pointed out by syz-checkDmitry Vyukov2022-01-131-4/+0
| | | | Update #590
* sys/linux: update warn filesDmitry Vyukov2022-01-131-0/+4
| | | | | Regenerate warn files on the latest kernel commit fe8152b38d3 and latest syzkaller commit with fresh kernel config files.
* sys/linux: fix 32-bit warningsDmitry Vyukov2019-12-231-5/+0
| | | | | | | Lots of interesting findings... Especially 2 byte uid/gid/pid. Update #590
* tools/syz-check: check amd64 and 386 at the same timeDmitry Vyukov2019-12-221-0/+5
| | | | Update #590
* pkg/compiler: fix bitfield layout bugDmitry Vyukov2019-12-201-1/+0
| | | | | | Fixes #1542 Found thanks to syz-check. Update #590
* tools/syz-check: don't print our/kernel field name twice if equalDmitry Vyukov2019-12-181-1/+1
|
* sys/linux: fix few bugsDmitry Vyukov2019-12-181-8/+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-2/+9
| | | | | Line numbers create huge diffs when lines change slightly. That's very unhandy b/c we want to look at added/removed warnings.
* sys/linux: various descriptions fixesAndrey Konovalov2019-12-181-13/+1
|
* tools/syz-check: add description checking utilityDmitry Vyukov2019-12-171-0/+14
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