aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_block.txt.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: update descriptions in dev_block.txtfellair2025-06-161-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | A few things done here: - Add new block device ioctls (and structs) related to encryption, added in 1ebd4a3c095c ("blk-crypto: add ioctls to create and prepare hardware-wrapped keys"): BLKCRYPTOIMPORTKEY BLKCRYPTOGENERATEKEY BLKCRYPTOPREPAREKEY Deviate slightly from original keys-related structs to ensure that ioctl syscalls have preallocated buffers to work with, not merely pointers that go nowhere. - Add and update new/missing syscalls related to zoned block devices: BLKGETZONESZ BLKGETNRZONES BLKOPENZONE BLKCLOSEZONE BLKFINISHZONE - Add a few other missing syscalls, such as BLKRASET. - Fix some syscalls' directions (mostly, to 'inout').
* sys/linux: add new ioctls for io_uring, dev_block and fsSablin Viacheslav2024-11-131-0/+1
|
* sys/linux: refine BLKPG ioctlDmitry Vyukov2022-11-241-0/+5
| | | | | This ioctl accepts blkpg_partition struct: https://elixir.bootlin.com/linux/v6.1-rc6/source/block/ioctl.c#L20
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-0/+39
This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983