aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/socket_inet_sctp.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: regenerate .warn filesDmitry Vyukov2020-06-131-1/+0
| | | | | 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: fix int64 alignment on 386Dmitry Vyukov2019-12-231-2/+0
| | | | | | | | | 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-12/+14
| | | | Update #590
* tools/syz-check: don't print line numbers for warningsDmitry Vyukov2019-12-181-12/+12
| | | | | 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-7/+3
|
* tools/syz-check: add description checking utilityDmitry Vyukov2019-12-171-0/+16
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