aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_block.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: update descriptions in dev_block.txtfellair2025-06-161-3/+43
| | | | | | | | | | | | | | | | | | | | | | | | 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 rnullb descriptionsAleksandr Nogikh2025-05-211-0/+1
| | | | /dev/rnullb{} is the Rust implementation of the null block driver.
* 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-3/+13
| | | | | This ioctl accepts blkpg_partition struct: https://elixir.bootlin.com/linux/v6.1-rc6/source/block/ioctl.c#L20
* sys/linux: fix bugs pointed out by syz-checkDmitry Vyukov2022-01-131-1/+3
| | | | Update #590
* sys/linux: refine some device typesDmitry Vyukov2019-12-011-0/+1
| | | | | | /dev/pmem0 is a block device. /dev/adsp1 is the same as /dev/dsp1. dmmidi,admmidi,amidi is the same as /dev/snd/midi.
* sys/linux: rename dev descriptions filesAndrey Konovalov2019-02-011-0/+125
Prefix file names of descriptions of /dev/* files with dev_. And give some of them more appropriate names.