aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/fs_ioctl.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: add new ioctls for io_uring, dev_block and fsSablin Viacheslav2024-11-131-6/+19
|
* sys/linux: make fs flags explicit in ioctl$FS_IOC_SETFLAGSDenis Efremov2020-07-221-2/+5
| | | | | | | Make fs flags explicit in FS_IOC_SETFLAGS, FS_IOC_GETFLAGS ioctls. Signed-off-by: Denis Efremov <efremov@linux.com>
* sys/linux: change argument type in FS_IOC_[GS]ETFLAGS ioctlDenis Efremov2020-07-221-2/+2
| | | | | | FS_IOC_GETFLAGS, FS_IOC_SETFLAGS ioctls use pointer to int32. Signed-off-by: Denis Efremov <efremov@linux.com>
* sys/linux: fix 240 warnings in descriptionsDmitry Vyukov2019-12-201-14/+9
| | | | | | Sweeping fix of everything up to socket_netlink_route.txt. Update #590
* sys/linux: update fscrypt descriptionsEric Biggers2019-09-191-23/+0
| | | | | | | | | | | | | | | | | | | | | | - For v5.4: new ioctls FS_IOC_ADD_ENCRYPTION_KEY, FS_IOC_REMOVE_ENCRYPTION_KEY, FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS, FS_IOC_GET_ENCRYPTION_KEY_STATUS, and FS_IOC_GET_ENCRYPTION_POLICY_EX. - For v5.4: FS_IOC_SET_ENCRYPTION_POLICY now accepts an fscrypt_policy_v2 argument in addition to the original fscrypt_policy which is now called fscrypt_policy_v1. - For v5.4: the fscrypt definitions were moved to a new header <linux/fscrypt.h>, and some constants were given new FSCRYPT_* names instead of FS_*. Handle this, and to keep things organized similarly move the syzkaller descriptions to a new file fscrypt.txt. - For v5.0: remove the removed Speck modes and add Adiantum. - For v5.0: add the DIRECT_KEY encryption policy flag. Also fix the argument types for FS_IOC_GET_ENCRYPTION_POLICY and FS_IOC_GET_ENCRYPTION_PWSALT, which had been mixed up.
* sys/linux: regenerate and fix const filesDmitry Vyukov2019-03-141-11/+0
| | | | | | | | 1. Move fsverity descriptions to a separate file which is not regenerated automatically. It was dropped from linux-next. 2. Fix tlk_device.txt name in syz-extract. 3. Update some socket consts e.g. s/SO_TIMESTAMPING/SO_TIMESTAMPING_OLD/. 4. Regenerate const files on current upstream head.
* sys/linux: add fs-verity ioctlsVictor Hsieh2018-12-181-0/+11
| | | | | | | | This adds 2 ioctls and an argument type: - FS_IOC_ENABLE_VERITY - FS_IOC_MEASURE_VERITY - struct fsverity_digest Note fs-verity on-disk structs are not yet added.
* sys/linux: add ext4 ioctls and overlayfsDmitry Vyukov2018-08-291-0/+143
Update #533