aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_usbmon.txt.const
Commit message (Collapse)AuthorAgeFilesLines
* Revert "sys/linux: add description for fsinfo"Ioana-Ruxandra Stăncioi2020-08-241-4/+4
| | | | | | | | | The fsinfo() system call is under heavy discussion upstream, and it might be totally changed. As a result it was dropped from linux-next starting in next-20200819, and the pull request for 5.9 (https://lkml.kernel.org/r/1845353.1596469795@warthog.procyon.org.uk/) wasn't accepted. Therefore revert the syscall description (commit 4b0871d) for now.
* sys/linux/fs_fuse.txt: define FUSE request id as a resourceStefano Duo2020-08-141-4/+4
| | | | | | | | | | Currently fuse_in.unique and fuse_out.unique are not linked by any dependency chain. This causes the majority of the replies to the kernel to be dropped because not referring to a previously sent request. By defining them as a resource, we push the fuzzer in the right direction (i.e., try to respond using a previously issued unique value). The read syscall has been updated accordingly, it now expects and parses a fuse_in header and some additional data.
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-0/+20
This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983