aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/filesystem.txt.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: add more coverage for MPTCPChristoph Paasch2023-09-041-2/+2
| | | | | | New netlink command has been added to MPTCP as well as a few getsockopt. Add the necessary syskaller instructions.
* sys/linux/filesystem: add MOVE_MOUNT_BENEATH coverageChristian Brauner2023-06-071-0/+1
| | | | | | This is currently in linux-next make sure it gets tested. Signed-off-by: Christian Brauner <brauner@kernel.org>
* sys/linux/filesystem: add MOVE_MOUNT_SET_GROUP coverageChristian Brauner2023-06-071-0/+1
| | | | | | This has been supported for a while but apparently was never added. Signed-off-by: Christian Brauner <brauner@kernel.org>
* sys/linux, tools/syz-imagegen: update `syz_mount_image` to use ↵Hrutvik Kanabar2022-11-211-1/+1
| | | | | | | | | | | | | | | | `compressed_image` Rather than accepting "segments", `syz_mount_image` now accepts a compressed image. Since this is already a corpus-breaking change, also rearrange the arguments so that the image is at the end. This makes it easier to inspect what the other arguments are set to. We need to increase the timeout associated with `syz_mount_image`, as decompression and execution take a little longer. 5000ms should be very generous. This commit updates the descriptions and the `syz-imagegen` tool. The executor, seed images, and asset saving will be updated in future commits.
* sys/linux: update constsDmitry Vyukov2021-03-021-2/+2
| | | | | Update consts on upstream 7a7fd0de4a9804299793e564a555a49c1fc924cb. Remove termiox ioctls, they were removed in commit e0efb3168d34.
* sys/linux/filesystem: add mount_setattr() coverageChristian Brauner2021-03-011-0/+2
| | | | | | | | | I've moved the idmapped mount patchset into my for-next branch and plan to send it for the v5.12 merge window in ~2.5 weeks. It comes with a large xfstest but I would also like to get some syzkaller coverage. With-help-from: Dmitry Vyukov <dvyukov@google.com> Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-0/+67
This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983