Ioctl Numbers¶
1999年10月19日
Michael Elizabeth Chastain <mec@shout.net>
如果您要向内核添加新的 ioctl,则应使用 <linux/ioctl.h> 中定义的 _IO 宏。
_IO
一个
没有参数的ioctl
_IOW
一个
具有写入参数的ioctl(copy_from_user)
_IOR
一个
具有读取参数的ioctl(copy_to_user)
_IOWR
一个
同时具有写入和读取参数的ioctl。
“写入”和“读取”是从用户的角度来看的,就像系统调用“write”和“read”一样。 例如,SET_FOO ioctl将是_IOW,即使内核实际上是从用户空间读取数据; GET_FOO ioctl将是_IOR,即使内核实际上将数据写入用户空间。
_IO、_IOW、_IOR或_IOWR的第一个参数是来自下表的标识字母或数字。 由于驱动程序数量众多,因此许多驱动程序与其他驱动程序共享部分字母。
如果您正在为新设备编写驱动程序并且需要一个字母,请选择一个有足够扩展空间的未使用块:32到256个ioctl命令应该足够了。 您可以通过修补此文件并通过常规补丁提交流程注册该块。
_IO、_IOW、_IOR或_IOWR的第二个参数是一个序列号,用于区分彼此的ioctl。 _IOW、_IOR或_IOWR的第三个参数是进入内核或从内核传出的数据的类型(例如“int”或“struct foo”)。 注意! 请勿使用 sizeof(arg) 作为第三个参数,因为这会导致您的ioctl认为它传递的是 size_t 类型的参数。
某些设备使用其主设备号作为标识符; 只要它是唯一的,这就可以。 某些设备不规则,根本不遵循任何约定。
遵循此约定是好的,因为
保持ioctl全局唯一有助于错误检查:如果程序在错误的设备上调用ioctl,它将收到一个错误,而不是一些意外的行为。
“strace”构建过程会自动找到使用 _IO、_IOW、_IOR 或 _IOWR 定义的 ioctl 号。
当数字是唯一的时,“strace”可以将数字解码回有用的名称。
当使用此约定定义ioctl号时,寻找ioctl的人可以更容易地grep它们。
当遵循该约定,驱动程序代码可以使用通用代码在用户和内核空间之间复制参数。
此表列出了用户态可见的 ioctl,不包括 drivers/staging/ 中的。
代码 |
Seq# (十六进制) |
包含文件 |
注释 |
---|---|---|---|
0x00 |
00-1F |
linux/fs.h |
冲突! |
0x00 |
00-1F |
scsi/scsi_ioctl.h |
冲突! |
0x00 |
00-1F |
linux/fb.h |
冲突! |
0x00 |
00-1F |
linux/wavefront.h |
冲突! |
0x02 |
所有 |
linux/fd.h |
|
0x03 |
所有 |
linux/hdreg.h |
|
0x04 |
D2-DC |
linux/umsdos_fs.h |
自 2.6.11 以来已失效,但不要重复使用这些。 |
0x06 |
所有 |
linux/lp.h |
|
0x07 |
9F-D0 |
linux/vmw_vmci_defs.h, uapi/linux/vm_sockets.h |
|
0x09 |
所有 |
linux/raid/md_u.h |
|
0x10 |
00-0F |
drivers/char/s390/vmcp.h |
|
0x10 |
10-1F |
arch/s390/include/uapi/sclp_ctl.h |
|
0x10 |
20-2F |
arch/s390/include/uapi/asm/hypfs.h |
|
0x12 |
所有 |
linux/fs.h linux/blkpg.h linux/blkzoned.h linux/blk-crypto.h |
BLK* ioctls |
0x15 |
所有 |
linux/fs.h |
FS_IOC_* ioctls |
0x1b |
所有 |
InfiniBand 子系统 <http://infiniband.sourceforge.net/> |
|
0x20 |
所有 |
drivers/cdrom/cm206.h |
|
0x22 |
所有 |
scsi/sg.h |
|
0x3E |
00-0F |
linux/counter.h |
|
‘!’ |
00-1F |
uapi/linux/seccomp.h |
|
‘#’ |
00-3F |
IEEE 1394 子系统块,适用于整个子系统 |
|
‘$’ |
00-0F |
linux/perf_counter.h, linux/perf_event.h |
|
‘%’ |
00-0F |
include/uapi/linux/stm.h |
系统跟踪模块子系统 <mailto:alexander.shishkin@linux.intel.com> |
‘&’ |
00-07 |
drivers/firewire/nosy-user.h |
|
‘*’ |
00-1F |
uapi/linux/user_events.h |
|
‘1’ |
00-1F |
linux/timepps.h |
来自 Ulrich Windl 的 PPS 套件 <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/> |
‘2’ |
01-04 |
linux/i2o.h |
|
‘3’ |
00-0F |
drivers/s390/char/raw3270.h |
冲突! |
‘3’ |
00-1F |
linux/suspend_ioctls.h, kernel/power/user.c |
冲突! |
‘8’ |
所有 |
SNP8023 高级 NIC 卡 <mailto:mcr@solidum.com> |
|
‘;’ |
64-7F |
linux/vfio.h |
|
‘;’ |
80-FF |
linux/iommufd.h |
|
‘=’ |
00-3f |
uapi/linux/ptp_clock.h |
|
‘@’ |
00-0F |
linux/radeonfb.h |
冲突! |
‘@’ |
00-0F |
drivers/video/aty/aty128fb.c |
冲突! |
‘A’ |
00-1F |
linux/apm_bios.h |
冲突! |
‘A’ |
00-0F |
linux/agpgart.h, drivers/char/agp/compat_ioctl.h |
冲突! |
‘A’ |
00-7F |
sound/asound.h |
冲突! |
‘B’ |
00-1F |
linux/cciss_ioctl.h |
冲突! |
‘B’ |
00-0F |
include/linux/pmu.h |
冲突! |
‘B’ |
C0-FF |
高级 bbus |
|
‘B’ |
00-0F |
xen/xenbus_dev.h |
冲突! |
‘C’ |
所有 |
linux/soundcard.h |
冲突! |
‘C’ |
01-2F |
linux/capi.h |
冲突! |
‘C’ |
F0-FF |
drivers/net/wan/cosa.h |
冲突! |
‘D’ |
所有 |
arch/s390/include/asm/dasd.h |
|
‘D’ |
40-5F |
drivers/scsi/dpt/dtpi_ioctl.h |
自 2022 年起已失效 |
‘D’ |
05 |
drivers/scsi/pmcraid.h |
|
‘E’ |
所有 |
linux/input.h |
冲突! |
‘E’ |
00-0F |
xen/evtchn.h |
冲突! |
‘F’ |
所有 |
linux/fb.h |
冲突! |
‘F’ |
01-02 |
drivers/scsi/pmcraid.h |
冲突! |
‘F’ |
20 |
drivers/video/fsl-diu-fb.h |
冲突! |
‘F’ |
20 |
linux/ivtvfb.h |
冲突! |
‘F’ |
20 |
linux/matroxfb.h |
冲突! |
‘F’ |
20 |
drivers/video/aty/atyfb_base.c |
冲突! |
‘F’ |
00-0F |
video/da8xx-fb.h |
冲突! |
‘F’ |
80-8F |
linux/arcfb.h |
冲突! |
‘F’ |
DD |
video/sstfb.h |
冲突! |
‘G’ |
00-3F |
drivers/misc/sgi-gru/grulib.h |
冲突! |
‘G’ |
00-0F |
xen/gntalloc.h, xen/gntdev.h |
冲突! |
‘H’ |
00-7F |
linux/hiddev.h |
冲突! |
‘H’ |
00-0F |
linux/hidraw.h |
冲突! |
‘H’ |
01 |
linux/mei.h |
冲突! |
‘H’ |
02 |
linux/mei.h |
冲突! |
‘H’ |
03 |
linux/mei.h |
冲突! |
‘H’ |
00-0F |
sound/asound.h |
冲突! |
‘H’ |
20-40 |
sound/asound_fm.h |
冲突! |
‘H’ |
80-8F |
sound/sfnt_info.h |
冲突! |
‘H’ |
10-8F |
sound/emu10k1.h |
冲突! |
‘H’ |
10-1F |
sound/sb16_csp.h |
冲突! |
‘H’ |
10-1F |
sound/hda_hwdep.h |
冲突! |
‘H’ |
40-4F |
sound/hdspm.h |
冲突! |
‘H’ |
40-4F |
sound/hdsp.h |
冲突! |
‘H’ |
90 |
sound/usb/usx2y/usb_stream.h |
|
‘H’ |
00-0F |
uapi/misc/habanalabs.h |
冲突! |
‘H’ |
A0 |
uapi/linux/usb/cdc-wdm.h |
|
‘H’ |
C0-F0 |
net/bluetooth/hci.h |
冲突! |
‘H’ |
C0-DF |
net/bluetooth/hidp/hidp.h |
冲突! |
‘H’ |
C0-DF |
net/bluetooth/cmtp/cmtp.h |
冲突! |
‘H’ |
C0-DF |
net/bluetooth/bnep/bnep.h |
冲突! |
‘H’ |
F1 |
linux/hid-roccat.h |
|
‘H’ |
F8-FA |
sound/firewire.h |
|
‘I’ |
所有 |
linux/isdn.h |
冲突! |
‘I’ |
00-0F |
drivers/isdn/divert/isdn_divert.h |
冲突! |
‘I’ |
40-4F |
linux/mISDNif.h |
冲突! |
‘K’ |
所有 |
linux/kd.h |
|
‘L’ |
00-1F |
linux/loop.h |
冲突! |
‘L’ |
10-1F |
drivers/scsi/mpt3sas/mpt3sas_ctl.h |
冲突! |
‘L’ |
E0-FF |
linux/ppdd.h |
加密磁盘设备驱动程序 <http://linux01.gwdg.de/~alatham/ppdd.html> |
‘M’ |
所有 |
linux/soundcard.h |
冲突! |
‘M’ |
01-16 和 |
mtd/mtd-abi.h drivers/mtd/mtdchar.c |
冲突! |
‘M’ |
01-03 |
drivers/scsi/megaraid/megaraid_sas.h |
|
‘M’ |
00-0F |
drivers/video/fsl-diu-fb.h |
冲突! |
‘N’ |
00-1F |
drivers/usb/scanner.h |
|
‘N’ |
40-7F |
drivers/block/nvme.c |
|
‘N’ |
80-8F |
uapi/linux/ntsync.h |
NT 同步原语 <mailto:wine-devel@winehq.org> |
‘O’ |
00-06 |
mtd/ubi-user.h |
UBI |
‘P’ |
所有 |
linux/soundcard.h |
冲突! |
‘P’ |
60-6F |
sound/sscape_ioctl.h |
冲突! |
‘P’ |
00-0F |
drivers/usb/class/usblp.c |
冲突! |
‘P’ |
01-09 |
drivers/misc/pci_endpoint_test.c |
冲突! |
‘P’ |
00-0F |
xen/privcmd.h |
冲突! |
‘P’ |
00-05 |
linux/tps6594_pfsm.h |
冲突! |
‘Q’ |
所有 |
linux/soundcard.h |
|
‘R’ |
00-1F |
linux/random.h |
冲突! |
‘R’ |
01 |
linux/rfkill.h |
冲突! |
‘R’ |
20-2F |
linux/trace_mmap.h |
|
‘R’ |
C0-DF |
net/bluetooth/rfcomm.h |
|
‘R’ |
E0 |
uapi/linux/fsl_mc.h |
|
‘S’ |
所有 |
linux/cdrom.h |
冲突! |
‘S’ |
80-81 |
scsi/scsi_ioctl.h |
冲突! |
‘S’ |
82-FF |
scsi/scsi.h |
冲突! |
‘S’ |
00-7F |
sound/asequencer.h |
冲突! |
‘T’ |
所有 |
linux/soundcard.h |
冲突! |
‘T’ |
00-AF |
sound/asound.h |
冲突! |
‘T’ |
所有 |
arch/x86/include/asm/ioctls.h |
冲突! |
‘T’ |
C0-DF |
linux/if_tun.h |
冲突! |
‘U’ |
所有 |
sound/asound.h |
冲突! |
‘U’ |
00-CF |
linux/uinput.h |
冲突! |
‘U’ |
00-EF |
linux/usbdevice_fs.h |
|
‘U’ |
C0-CF |
drivers/bluetooth/hci_uart.h |
|
‘V’ |
所有 |
linux/vt.h |
冲突! |
‘V’ |
所有 |
linux/videodev2.h |
冲突! |
‘V’ |
C0 |
linux/ivtvfb.h |
冲突! |
‘V’ |
C0 |
linux/ivtv.h |
冲突! |
‘V’ |
C0 |
media/si4713.h |
冲突! |
‘W’ |
00-1F |
linux/watchdog.h |
冲突! |
‘W’ |
00-1F |
linux/wanrouter.h |
冲突!(3.9之前) |
‘W’ |
00-3F |
sound/asound.h |
冲突! |
‘W’ |
40-5F |
drivers/pci/switch/switchtec.c |
|
‘W’ |
60-61 |
linux/watch_queue.h |
|
‘X’ |
所有 |
fs/xfs/xfs_fs.h, fs/xfs/linux-2.6/xfs_ioctl32.h, include/linux/falloc.h, linux/fs.h, |
冲突! |
‘X’ |
所有 |
fs/ocfs2/ocfs_fs.h |
冲突! |
‘X’ |
01 |
linux/pktcdvd.h |
冲突! |
‘Z’ |
14-15 |
drivers/message/fusion/mptctl.h |
|
‘[’ |
00-3F |
linux/usb/tmc.h |
USB 测试和测量设备 <mailto:gregkh@linuxfoundation.org> |
‘a’ |
所有 |
linux/atm*.h, linux/sonet.h |
linux 上的 ATM <http://lrcwww.epfl.ch/> |
‘a’ |
00-0F |
drivers/crypto/qat/qat_common/adf_cfg_common.h |
冲突! qat 驱动程序 |
‘b’ |
00-FF |
冲突!bit3 vme主机桥 <mailto:natalia@nikhefk.nikhef.nl> |
|
‘b’ |
00-0F |
linux/dma-buf.h |
冲突! |
‘c’ |
00-7F |
linux/comstats.h |
冲突! |
‘c’ |
00-7F |
linux/coda.h |
冲突! |
‘c’ |
00-1F |
linux/chio.h |
冲突! |
‘c’ |
80-9F |
arch/s390/include/asm/chsc.h |
冲突! |
‘c’ |
A0-AF |
arch/x86/include/asm/msr.h 冲突! |
|
‘d’ |
00-FF |
linux/char/drm/drm.h |
冲突! |
‘d’ |
02-40 |
pcmcia/ds.h |
冲突! |
‘d’ |
F0-FF |
linux/digi1.h |
|
‘e’ |
所有 |
linux/digi1.h |
冲突! |
‘f’ |
00-1F |
linux/ext2_fs.h |
冲突! |
‘f’ |
00-1F |
linux/ext3_fs.h |
冲突! |
‘f’ |
00-0F |
fs/jfs/jfs_dinode.h |
冲突! |
‘f’ |
00-0F |
fs/ext4/ext4.h |
冲突! |
‘f’ |
00-0F |
linux/fs.h |
冲突! |
‘f’ |
00-0F |
fs/ocfs2/ocfs2_fs.h |
冲突! |
‘f’ |
13-27 |
linux/fscrypt.h |
|
‘f’ |
81-8F |
linux/fsverity.h |
|
‘g’ |
00-0F |
linux/usb/gadgetfs.h |
|
‘g’ |
20-2F |
linux/usb/g_printer.h |
|
‘h’ |
00-7F |
冲突!Charon 文件系统 <mailto:zapman@interlan.net> |
|
‘h’ |
00-1F |
linux/hpet.h |
冲突! |
‘h’ |
80-8F |
fs/hfsplus/ioctl.c |
|
‘i’ |
00-3F |
linux/i2o-dev.h |
冲突! |
‘i’ |
0B-1F |
linux/ipmi.h |
冲突! |
‘i’ |
80-8F |
linux/i8k.h |
|
‘i’ |
90-9F |
linux/iio/*.h |
IIO |
‘j’ |
00-3F |
linux/joystick.h |
|
‘k’ |
00-0F |
linux/spi/spidev.h |
冲突! |
‘k’ |
00-05 |
video/kyro.h |
冲突! |
‘k’ |
10-17 |
linux/hsi/hsi_char.h |
HSI 字符设备 |
‘l’ |
00-3F |
linux/tcfs_fs.h |
透明加密文件系统 <http://web.archive.org/web/%2A/http://mikonos.dia.unisa.it/tcfs> |
‘l’ |
40-7F |
linux/udf_fs_i.h |
|
‘m’ |
00-09 |
linux/mmtimer.h |
冲突! |
‘m’ |
所有 |
linux/mtio.h |
冲突! |
‘m’ |
所有 |
linux/soundcard.h |
冲突! |
‘m’ |
所有 |
linux/synclink.h |
冲突! |
‘m’ |
00-19 |
drivers/message/fusion/mptctl.h |
冲突! |
‘m’ |
00 |
drivers/scsi/megaraid/megaraid_ioctl.h |
冲突! |
‘n’ |
00-7F |
linux/ncp_fs.h 和 fs/ncpfs/ioctl.c |
|
‘n’ |
80-8F |
uapi/linux/nilfs2_api.h |
NILFS2 |
‘n’ |
E0-FF |
linux/matroxfb.h |
matroxfb |
‘o’ |
00-1F |
fs/ocfs2/ocfs2_fs.h |
OCFS2 |
‘o’ |
00-03 |
mtd/ubi-user.h |
冲突!(OCFS2 和 UBI 重叠) |
‘o’ |
40-41 |
mtd/ubi-user.h |
UBI |
‘o’ |
01-A1 |
linux/dvb/*.h |
DVB |
‘p’ |
00-0F |
linux/phantom.h |
冲突!(OpenHaptics 需要这个) |
‘p’ |
00-1F |
linux/rtc.h |
冲突! |
‘p’ |
40-7F |
linux/nvram.h |
|
‘p’ |
80-9F |
linux/ppdev.h |
用户空间 parport <mailto:tim@cyberelk.net> |
‘p’ |
A1-A5 |
linux/pps.h |
LinuxPPS |
‘p’ |
B1-B3 |
linux/pps_gen.h |
LinuxPPS <mailto:giometti@linux.it> |
‘q’ |
00-1F |
linux/serio.h |
|
‘q’ |
80-FF |
linux/telephony.h linux/ixjuser.h |
Internet PhoneJACK, Internet LineJACK <http://web.archive.org/web/%2A/http://www.quicknet.net> |
‘r’ |
00-1F |
linux/msdos_fs.h and fs/fat/dir.c |
|
‘s’ |
所有 |
linux/cdk.h |
|
‘t’ |
00-7F |
linux/ppp-ioctl.h |
|
‘t’ |
80-8F |
linux/isdn_ppp.h |
|
‘t’ |
90-91 |
linux/toshiba.h |
toshiba and toshiba_acpi SMM |
‘u’ |
00-1F |
linux/smb_fs.h |
gone |
‘u’ |
00-2F |
linux/ublk_cmd.h |
冲突! |
‘u’ |
20-3F |
linux/uvcvideo.h |
USB video class host driver (USB视频类主机驱动) |
‘u’ |
40-4f |
linux/udmabuf.h |
userspace dma-buf misc device (用户空间dma-buf杂项设备) |
‘v’ |
00-1F |
linux/ext2_fs.h |
冲突! |
‘v’ |
00-1F |
linux/fs.h |
冲突! |
‘v’ |
00-0F |
linux/sonypi.h |
冲突! |
‘v’ |
00-0F |
media/v4l2-subdev.h |
冲突! |
‘v’ |
20-27 |
arch/powerpc/include/uapi/asm/vas-api.h |
VAS API |
‘v’ |
C0-FF |
linux/meye.h |
冲突! |
‘w’ |
所有 |
CERN SCI driver |
|
‘y’ |
00-1F |
packet based user level communications <mailto:zapman@interlan.net> |
|
‘z’ |
00-3F |
CAN bus card conflict! <mailto:hdstich@connectu.ulm.circular.de> |
|
‘z’ |
40-7F |
CAN bus card conflict! <mailto:oe@port.de> |
|
‘z’ |
10-4F |
drivers/s390/crypto/zcrypt_api.h |
冲突! |
‘|’ |
00-7F |
linux/media.h |
|
‘|’ |
80-9F |
samples/ |
Any sample and example drivers (任何示例和演示驱动程序) |
0x80 |
00-1F |
linux/fb.h |
|
0x81 |
00-1F |
linux/vduse.h |
|
0x89 |
00-06 |
arch/x86/include/asm/sockios.h |
|
0x89 |
0B-DF |
linux/sockios.h |
|
0x89 |
E0-EF |
linux/sockios.h |
SIOCPROTOPRIVATE range (SIOCPROTOPRIVATE范围) |
0x89 |
F0-FF |
linux/sockios.h |
SIOCDEVPRIVATE range (SIOCDEVPRIVATE范围) |
0x8A |
00-1F |
linux/eventpoll.h |
|
0x8B |
所有 |
linux/wireless.h |
|
0x8C |
00-3F |
WiNRADiO driver <http://www.winradio.com.au/> |
|
0x90 |
00 |
drivers/cdrom/sbpcd.h |
|
0x92 |
00-0F |
drivers/usb/mon/mon_bin.c |
|
0x93 |
60-7F |
linux/auto_fs.h |
|
0x94 |
所有 |
fs/btrfs/ioctl.h and linux/fs.h |
Btrfs filesystem some lifted to vfs/generic (Btrfs文件系统的一些已提升到vfs/generic) |
0x97 |
00-7F |
fs/ceph/ioctl.h |
Ceph file system (Ceph 文件系统) |
0x99 |
00-0F |
537-Addinboard driver <mailto:buk@buks.ipn.de> |
|
0x9A |
00-0F |
include/uapi/fwctl/fwctl.h |
|
0xA0 |
所有 |
linux/sdp/sdp.h |
Industrial Device Project <mailto:kenji@bitgate.com> |
0xA1 |
0 |
linux/vtpm_proxy.h |
TPM Emulator Proxy Driver (TPM 模拟器代理驱动) |
0xA2 |
所有 |
uapi/linux/acrn.h |
ACRN hypervisor (ACRN 虚拟机监控程序) |
0xA3 |
80-8F |
Port ACL in development: <mailto:tlewis@mindspring.com> |
|
0xA3 |
90-9F |
linux/dtlk.h |
|
0xA4 |
00-1F |
uapi/linux/tee.h |
Generic TEE subsystem (通用 TEE 子系统) |
0xA4 |
00-1F |
uapi/asm/sgx.h |
|
0xA5 |
01-05 |
linux/surface_aggregator/cdev.h |
Microsoft Surface Platform System Aggregator <mailto:luzmaximilian@gmail.com> |
0xA5 |
20-2F |
linux/surface_aggregator/dtx.h |
Microsoft Surface DTX driver <mailto:luzmaximilian@gmail.com> |
0xAA |
00-3F |
linux/uapi/linux/userfaultfd.h |
|
0xAB |
00-1F |
linux/nbd.h |
|
0xAC |
00-1F |
linux/raw.h |
|
0xAD |
00 |
Netfilter device in development: <mailto:rusty@rustcorp.com.au> |
|
0xAE |
00-1F |
linux/kvm.h |
Kernel-based Virtual Machine <mailto:kvm@vger.kernel.org> |
0xAE |
40-FF |
linux/kvm.h |
Kernel-based Virtual Machine <mailto:kvm@vger.kernel.org> |
0xAE |
20-3F |
linux/nitro_enclaves.h |
Nitro Enclaves |
0xAF |
00-1F |
linux/fsl_hypervisor.h |
Freescale hypervisor (飞思卡尔虚拟机监控程序) |
0xB0 |
所有 |
RATIO devices in development: <mailto:vgo@ratio.de> |
|
0xB1 |
00-1F |
||
0xB2 |
00 |
arch/powerpc/include/uapi/asm/papr-vpd.h |
powerpc/pseries VPD API <mailto:linuxppc-dev> |
0xB2 |
01-02 |
arch/powerpc/include/uapi/asm/papr-sysparm.h |
powerpc/pseries system parameter API <mailto:linuxppc-dev> |
0xB2 |
03-05 |
arch/powerpc/include/uapi/asm/papr-indices.h |
powerpc/pseries indices API <mailto:linuxppc-dev> |
0xB2 |
06-07 |
arch/powerpc/include/uapi/asm/papr-platform-dump.h |
powerpc/pseries Platform Dump API <mailto:linuxppc-dev> |
0xB2 |
08 |
powerpc/include/uapi/asm/papr-physical-attestation.h |
powerpc/pseries Physical Attestation API <mailto:linuxppc-dev> |
0xB3 |
00 |
linux/mmc/ioctl.h |
|
0xB4 |
00-0F |
linux/gpio.h |
|
0xB5 |
00-0F |
uapi/linux/rpmsg.h |
|
0xB6 |
所有 |
linux/fpga-dfl.h |
|
0xB7 |
所有 |
uapi/linux/remoteproc_cdev.h |
|
0xB7 |
所有 |
uapi/linux/nsfs.h |
<mailto:Andrei Vagin <avagin@openvz.org>> |
0xB8 |
01-02 |
uapi/misc/mrvl_cn10k_dpi.h |
Marvell CN10K DPI driver |
0xB8 |
所有 |
uapi/linux/mshv.h |
Microsoft Hyper-V /dev/mshv driver <mailto:linux-hyperv@vger.kernel.org> |
0xC0 |
00-0F |
linux/usb/iowarrior.h |
|
0xCA |
00-0F |
uapi/misc/cxl.h |
Dead since 6.15 (自 6.15 版本后已失效) |
0xCA |
10-2F |
uapi/misc/ocxl.h |
|
0xCA |
80-BF |
uapi/scsi/cxlflash_ioctl.h |
Dead since 6.15 (自 6.15 版本后已失效) |
0xCB |
00-1F |
CBM serial IEC bus in development: <mailto:michael.klein@puffin.lb.shuttle.de> |
|
0xCC |
00-0F |
drivers/misc/ibmvmc.h |
pseries VMC driver |
0xCD |
01 |
linux/reiserfs_fs.h |
Dead since 6.13 (自 6.13 版本后已失效) |
0xCE |
01-02 |
uapi/linux/cxl_mem.h |
Compute Express Link Memory Devices (计算快车链路内存设备) |
0xCF |
02 |
fs/smb/client/cifs_ioctl.h |
|
0xDB |
00-0F |
drivers/char/mwave/mwavepub.h |
|
0xDD |
00-3F |
ZFCP device driver see drivers/s390/scsi/ <mailto:aherrman@de.ibm.com> |
|
0xE5 |
00-3F |
linux/fuse.h |
|
0xEC |
00-01 |
drivers/platform/chrome/cros_ec_dev.h |
ChromeOS EC driver |
0xEE |
00-09 |
uapi/linux/pfrut.h |
Platform Firmware Runtime Update and Telemetry (平台固件运行时更新和遥测) |
0xF3 |
00-3F |
drivers/usb/misc/sisusbvga/sisusb.h |
sisfb (in development) <mailto:thomas@winischhofer.net> |
0xF6 |
所有 |
LTTng Linux Trace Toolkit Next Generation <mailto:mathieu.desnoyers@efficios.com> |
|
0xF8 |
所有 |
arch/x86/include/uapi/asm/amd_hsmp.h |
AMD HSMP EPYC system management interface driver <mailto:nchatrad@amd.com> |
0xF9 |
00-0F |
uapi/misc/amd-apml.h |
AMD side band system management interface driver <mailto:naveenkrishna.chatradhi@amd.com> |
0xFD |
所有 |
linux/dm-ioctl.h |
|
0xFE |
所有 |
linux/isst_if.h |