aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/fs_fuse.txt.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: run make extractPimyn Girgis2025-12-031-1/+1
| | | | Run make extract on next-20251111.
* sys/linux: update and remove obsolete constsMarios Pomonis2025-04-031-1/+1
| | | | | | | This commit removes CRYPTO_ALG_TYPE_COMPRESS from socket_alg.txt since it was recently removed from the kernel source tree (fce8b8d crypto: remove obsolete 'comp' compression API). It also updates a number of other consts that make extract detected.
* sys/linux: updated fuse fs specificationsSablin Viacheslav2024-11-291-0/+37
|
* sys/linux: regenerate descriptionsDmitry Vyukov2024-10-251-1/+1
| | | | Regenerate descriptions on kernel commit 715ca9dd687f89ddaac8ec8ccb3b5e5a30311a99.
* sys/linux: run make extractAlexander Potapenko2024-05-151-1/+1
| | | | | | | | | Make the following changes for extraction to succeed: - drop the KVM API constants for features removed in 6.9; - hardcode the three TUNNEL_*_OPT constants that cannot be extracted due to a header change; - hardcode the HCI_OP_* constants removed in 99fca36c8b412 ("Bluetooth: HCI: Remove HCI_AMP support"); - hardcode the L2CAP_* constants removed in e7b02296fb40 ("Bluetooth: Remove BT_HS"); - hardcode LANDLOCK_ACCESS_FS_IOCTL_DEV until it hits upstream.
* sys/linux: add more coverage for MPTCPChristoph Paasch2023-09-041-1/+1
| | | | | | New netlink command has been added to MPTCP as well as a few getsockopt. Add the necessary syskaller instructions.
* sys/linux: update const filesDmitry Vyukov2022-11-131-1/+1
| | | | Update const files on next-20221031.
* sys/linux: update const filesDmitry Vyukov2022-01-271-1/+1
| | | | Regenerate const files on next-20220127.
* sys/linux: fix and regenerate consts on the latest kenrelDmitry Vyukov2021-11-121-1/+1
| | | | Fix missed includes and renamed constants and regenerate const files on 89d714ab60.
* sys/linux: regen .const files on v5.14Dmitry Vyukov2021-09-161-1/+1
|
* sys/linux: update constsDmitry Vyukov2021-02-121-1/+1
| | | | Update consts on upstream 825b5991a46ef28a05a4646c8fe1ae5cef7c7828.
* sys/linux: regenerate const filesDmitry Vyukov2020-11-131-1/+1
| | | | | Regenerate consts on upstream 585e5b17b92dead8a3aca4e3c9876fbca5f7e0ba. Fix vmw_vmci.txt const extraction.
* sys/linux/fs_fuse.txt: define FUSE request id as a resourceStefano Duo2020-08-141-0/+1
| | | | | | | | | | 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/+60
This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983