PATH:
usr
/
include
/
linux
/* SPDX-License-Identifier: BSD-3-Clause */ /* * Copyright (C) 2021 OpenSynergy GmbH */ #ifndef VIRTIO_SND_IF_H #define VIRTIO_SND_IF_H #include <linux/virtio_types.h> /******************************************************************************* * CONFIGURATION SPACE */ struct virtio_snd_config { /* # of available physical jacks */ __le32 jacks; /* # of available PCM streams */ __le32 streams; /* # of available channel maps */ __le32 chmaps; }; enum { /* device virtqueue indexes */ VIRTIO_SND_VQ_CONTROL = 0, VIRTIO_SND_VQ_EVENT, VIRTIO_SND_VQ_TX, VIRTIO_SND_VQ_RX, /* # of device virtqueues */ VIRTIO_SND_VQ_MAX }; /******************************************************************************* * COMMON DEFINITIONS */ /* supported dataflow directions */ enum { VIRTIO_SND_D_OUTPUT = 0, VIRTIO_SND_D_INPUT }; enum { /* jack control request types */ VIRTIO_SND_R_JACK_INFO = 1, VIRTIO_SND_R_JACK_REMAP, /* PCM control request types */ VIRTIO_SND_R_PCM_INFO = 0x0100, VIRTIO_SND_R_PCM_SET_PARAMS, VIRTIO_SND_R_PCM_PREPARE, VIRTIO_SND_R_PCM_RELEASE, VIRTIO_SND_R_PCM_START, VIRTIO_SND_R_PCM_STOP, /* channel map control request types */ VIRTIO_SND_R_CHMAP_INFO = 0x0200, /* jack event types */ VIRTIO_SND_EVT_JACK_CONNECTED = 0x1000, VIRTIO_SND_EVT_JACK_DISCONNECTED, /* PCM event types */ VIRTIO_SND_EVT_PCM_PERIOD_ELAPSED = 0x1100, VIRTIO_SND_EVT_PCM_XRUN, /* common status codes */ VIRTIO_SND_S_OK = 0x8000, VIRTIO_SND_S_BAD_MSG, VIRTIO_SND_S_NOT_SUPP, VIRTIO_SND_S_IO_ERR }; /* common header */ struct virtio_snd_hdr { __le32 code; }; /* event notification */ struct virtio_snd_event { /* VIRTIO_SND_EVT_XXX */ struct virtio_snd_hdr hdr; /* optional event data */ __le32 data; }; /* common control request to query an item information */ struct virtio_snd_query_info { /* VIRTIO_SND_R_XXX_INFO */ struct virtio_snd_hdr hdr; /* item start identifier */ __le32 start_id; /* item count to query */ __le32 count; /* item information size in bytes */ __le32 size; }; /* common item information header */ struct virtio_snd_info { /* function group node id (High Definition Audio Specification 7.1.2) */ __le32 hda_fn_nid; }; /******************************************************************************* * JACK CONTROL MESSAGES */ struct virtio_snd_jack_hdr { /* VIRTIO_SND_R_JACK_XXX */ struct virtio_snd_hdr hdr; /* 0 ... virtio_snd_config::jacks - 1 */ __le32 jack_id; }; /* supported jack features */ enum { VIRTIO_SND_JACK_F_REMAP = 0 }; struct virtio_snd_jack_info { /* common header */ struct virtio_snd_info hdr; /* supported feature bit map (1 << VIRTIO_SND_JACK_F_XXX) */ __le32 features; /* pin configuration (High Definition Audio Specification 7.3.3.31) */ __le32 hda_reg_defconf; /* pin capabilities (High Definition Audio Specification 7.3.4.9) */ __le32 hda_reg_caps; /* current jack connection status (0: disconnected, 1: connected) */ __u8 connected; __u8 padding[7]; }; /* jack remapping control request */ struct virtio_snd_jack_remap { /* .code = VIRTIO_SND_R_JACK_REMAP */ struct virtio_snd_jack_hdr hdr; /* selected association number */ __le32 association; /* selected sequence number */ __le32 sequence; }; /******************************************************************************* * PCM CONTROL MESSAGES */ struct virtio_snd_pcm_hdr { /* VIRTIO_SND_R_PCM_XXX */ struct virtio_snd_hdr hdr; /* 0 ... virtio_snd_config::streams - 1 */ __le32 stream_id; }; /* supported PCM stream features */ enum { VIRTIO_SND_PCM_F_SHMEM_HOST = 0, VIRTIO_SND_PCM_F_SHMEM_GUEST, VIRTIO_SND_PCM_F_MSG_POLLING, VIRTIO_SND_PCM_F_EVT_SHMEM_PERIODS, VIRTIO_SND_PCM_F_EVT_XRUNS }; /* supported PCM sample formats */ enum { /* analog formats (width / physical width) */ VIRTIO_SND_PCM_FMT_IMA_ADPCM = 0, /* 4 / 4 bits */ VIRTIO_SND_PCM_FMT_MU_LAW, /* 8 / 8 bits */ VIRTIO_SND_PCM_FMT_A_LAW, /* 8 / 8 bits */ VIRTIO_SND_PCM_FMT_S8, /* 8 / 8 bits */ VIRTIO_SND_PCM_FMT_U8, /* 8 / 8 bits */ VIRTIO_SND_PCM_FMT_S16, /* 16 / 16 bits */ VIRTIO_SND_PCM_FMT_U16, /* 16 / 16 bits */ VIRTIO_SND_PCM_FMT_S18_3, /* 18 / 24 bits */ VIRTIO_SND_PCM_FMT_U18_3, /* 18 / 24 bits */ VIRTIO_SND_PCM_FMT_S20_3, /* 20 / 24 bits */ VIRTIO_SND_PCM_FMT_U20_3, /* 20 / 24 bits */ VIRTIO_SND_PCM_FMT_S24_3, /* 24 / 24 bits */ VIRTIO_SND_PCM_FMT_U24_3, /* 24 / 24 bits */ VIRTIO_SND_PCM_FMT_S20, /* 20 / 32 bits */ VIRTIO_SND_PCM_FMT_U20, /* 20 / 32 bits */ VIRTIO_SND_PCM_FMT_S24, /* 24 / 32 bits */ VIRTIO_SND_PCM_FMT_U24, /* 24 / 32 bits */ VIRTIO_SND_PCM_FMT_S32, /* 32 / 32 bits */ VIRTIO_SND_PCM_FMT_U32, /* 32 / 32 bits */ VIRTIO_SND_PCM_FMT_FLOAT, /* 32 / 32 bits */ VIRTIO_SND_PCM_FMT_FLOAT64, /* 64 / 64 bits */ /* digital formats (width / physical width) */ VIRTIO_SND_PCM_FMT_DSD_U8, /* 8 / 8 bits */ VIRTIO_SND_PCM_FMT_DSD_U16, /* 16 / 16 bits */ VIRTIO_SND_PCM_FMT_DSD_U32, /* 32 / 32 bits */ VIRTIO_SND_PCM_FMT_IEC958_SUBFRAME /* 32 / 32 bits */ }; /* supported PCM frame rates */ enum { VIRTIO_SND_PCM_RATE_5512 = 0, VIRTIO_SND_PCM_RATE_8000, VIRTIO_SND_PCM_RATE_11025, VIRTIO_SND_PCM_RATE_16000, VIRTIO_SND_PCM_RATE_22050, VIRTIO_SND_PCM_RATE_32000, VIRTIO_SND_PCM_RATE_44100, VIRTIO_SND_PCM_RATE_48000, VIRTIO_SND_PCM_RATE_64000, VIRTIO_SND_PCM_RATE_88200, VIRTIO_SND_PCM_RATE_96000, VIRTIO_SND_PCM_RATE_176400, VIRTIO_SND_PCM_RATE_192000, VIRTIO_SND_PCM_RATE_384000 }; struct virtio_snd_pcm_info { /* common header */ struct virtio_snd_info hdr; /* supported feature bit map (1 << VIRTIO_SND_PCM_F_XXX) */ __le32 features; /* supported sample format bit map (1 << VIRTIO_SND_PCM_FMT_XXX) */ __le64 formats; /* supported frame rate bit map (1 << VIRTIO_SND_PCM_RATE_XXX) */ __le64 rates; /* dataflow direction (VIRTIO_SND_D_XXX) */ __u8 direction; /* minimum # of supported channels */ __u8 channels_min; /* maximum # of supported channels */ __u8 channels_max; __u8 padding[5]; }; /* set PCM stream format */ struct virtio_snd_pcm_set_params { /* .code = VIRTIO_SND_R_PCM_SET_PARAMS */ struct virtio_snd_pcm_hdr hdr; /* size of the hardware buffer */ __le32 buffer_bytes; /* size of the hardware period */ __le32 period_bytes; /* selected feature bit map (1 << VIRTIO_SND_PCM_F_XXX) */ __le32 features; /* selected # of channels */ __u8 channels; /* selected sample format (VIRTIO_SND_PCM_FMT_XXX) */ __u8 format; /* selected frame rate (VIRTIO_SND_PCM_RATE_XXX) */ __u8 rate; __u8 padding; }; /******************************************************************************* * PCM I/O MESSAGES */ /* I/O request header */ struct virtio_snd_pcm_xfer { /* 0 ... virtio_snd_config::streams - 1 */ __le32 stream_id; }; /* I/O request status */ struct virtio_snd_pcm_status { /* VIRTIO_SND_S_XXX */ __le32 status; /* current device latency */ __le32 latency_bytes; }; /******************************************************************************* * CHANNEL MAP CONTROL MESSAGES */ struct virtio_snd_chmap_hdr { /* VIRTIO_SND_R_CHMAP_XXX */ struct virtio_snd_hdr hdr; /* 0 ... virtio_snd_config::chmaps - 1 */ __le32 chmap_id; }; /* standard channel position definition */ enum { VIRTIO_SND_CHMAP_NONE = 0, /* undefined */ VIRTIO_SND_CHMAP_NA, /* silent */ VIRTIO_SND_CHMAP_MONO, /* mono stream */ VIRTIO_SND_CHMAP_FL, /* front left */ VIRTIO_SND_CHMAP_FR, /* front right */ VIRTIO_SND_CHMAP_RL, /* rear left */ VIRTIO_SND_CHMAP_RR, /* rear right */ VIRTIO_SND_CHMAP_FC, /* front center */ VIRTIO_SND_CHMAP_LFE, /* low frequency (LFE) */ VIRTIO_SND_CHMAP_SL, /* side left */ VIRTIO_SND_CHMAP_SR, /* side right */ VIRTIO_SND_CHMAP_RC, /* rear center */ VIRTIO_SND_CHMAP_FLC, /* front left center */ VIRTIO_SND_CHMAP_FRC, /* front right center */ VIRTIO_SND_CHMAP_RLC, /* rear left center */ VIRTIO_SND_CHMAP_RRC, /* rear right center */ VIRTIO_SND_CHMAP_FLW, /* front left wide */ VIRTIO_SND_CHMAP_FRW, /* front right wide */ VIRTIO_SND_CHMAP_FLH, /* front left high */ VIRTIO_SND_CHMAP_FCH, /* front center high */ VIRTIO_SND_CHMAP_FRH, /* front right high */ VIRTIO_SND_CHMAP_TC, /* top center */ VIRTIO_SND_CHMAP_TFL, /* top front left */ VIRTIO_SND_CHMAP_TFR, /* top front right */ VIRTIO_SND_CHMAP_TFC, /* top front center */ VIRTIO_SND_CHMAP_TRL, /* top rear left */ VIRTIO_SND_CHMAP_TRR, /* top rear right */ VIRTIO_SND_CHMAP_TRC, /* top rear center */ VIRTIO_SND_CHMAP_TFLC, /* top front left center */ VIRTIO_SND_CHMAP_TFRC, /* top front right center */ VIRTIO_SND_CHMAP_TSL, /* top side left */ VIRTIO_SND_CHMAP_TSR, /* top side right */ VIRTIO_SND_CHMAP_LLFE, /* left LFE */ VIRTIO_SND_CHMAP_RLFE, /* right LFE */ VIRTIO_SND_CHMAP_BC, /* bottom center */ VIRTIO_SND_CHMAP_BLC, /* bottom left center */ VIRTIO_SND_CHMAP_BRC /* bottom right center */ }; /* maximum possible number of channels */ #define VIRTIO_SND_CHMAP_MAX_SIZE 18 struct virtio_snd_chmap_info { /* common header */ struct virtio_snd_info hdr; /* dataflow direction (VIRTIO_SND_D_XXX) */ __u8 direction; /* # of valid channel position values */ __u8 channels; /* channel position values (VIRTIO_SND_CHMAP_XXX) */ __u8 positions[VIRTIO_SND_CHMAP_MAX_SIZE]; }; #endif /* VIRTIO_SND_IF_H */
[+]
..
[-] keyctl.h
[edit]
[-] nilfs2_ondisk.h
[edit]
[-] if_tun.h
[edit]
[+]
hsi
[-] random.h
[edit]
[-] smiapp.h
[edit]
[-] prctl.h
[edit]
[-] kfd_ioctl.h
[edit]
[-] qrtr.h
[edit]
[-] tiocl.h
[edit]
[-] cciss_ioctl.h
[edit]
[+]
usb
[-] dlm_netlink.h
[edit]
[-] nsfs.h
[edit]
[-] isdn_ppp.h
[edit]
[-] vmcore.h
[edit]
[+]
cifs
[-] ncsi.h
[edit]
[-] atm_zatm.h
[edit]
[-] reboot.h
[edit]
[-] shm.h
[edit]
[-] userio.h
[edit]
[-] fpga-dfl.h
[edit]
[-] hdreg.h
[edit]
[-] netfilter_arp.h
[edit]
[-] media.h
[edit]
[-] netrom.h
[edit]
[-] ppp_defs.h
[edit]
[-] iso_fs.h
[edit]
[-] msdos_fs.h
[edit]
[-] atalk.h
[edit]
[-] userfaultfd.h
[edit]
[-] mmtimer.h
[edit]
[-] seg6_genl.h
[edit]
[+]
netfilter_ipv6
[-] atmmpc.h
[edit]
[-] connector.h
[edit]
[-] coff.h
[edit]
[-] aio_abi.h
[edit]
[-] mptcp.h
[edit]
[-] gigaset_dev.h
[edit]
[-] scif_ioctl.h
[edit]
[-] hiddev.h
[edit]
[-] netconf.h
[edit]
[-] if_fddi.h
[edit]
[-] if_slip.h
[edit]
[-] isdnif.h
[edit]
[-] nfs2.h
[edit]
[-] bpfilter.h
[edit]
[-] nfs4_mount.h
[edit]
[-] mroute.h
[edit]
[-] bcache.h
[edit]
[-] if_arcnet.h
[edit]
[-] ivtv.h
[edit]
[-] virtio_fs.h
[edit]
[-] cn_proc.h
[edit]
[-] version.h
[edit]
[-] hdlcdrv.h
[edit]
[-] sysinfo.h
[edit]
[-] mrp_bridge.h
[edit]
[-] ipmi_bmc.h
[edit]
[-] tipc_sockets_diag.h
[edit]
[-] membarrier.h
[edit]
[-] gfs2_ondisk.h
[edit]
[-] fdreg.h
[edit]
[-] cryptouser.h
[edit]
[-] vdpa.h
[edit]
[-] netlink.h
[edit]
[-] if_link.h
[edit]
[-] psample.h
[edit]
[-] sound.h
[edit]
[-] virtio_console.h
[edit]
[-] ethtool.h
[edit]
[-] kvm.h
[edit]
[-] atmbr2684.h
[edit]
[-] msg.h
[edit]
[-] elf-fdpic.h
[edit]
[-] arcfb.h
[edit]
[-] if_eql.h
[edit]
[-] mqueue.h
[edit]
[-] isdn.h
[edit]
[-] hidraw.h
[edit]
[-] virtio_types.h
[edit]
[-] openvswitch.h
[edit]
[-] timerfd.h
[edit]
[-] synclink.h
[edit]
[-] map_to_7segment.h
[edit]
[-] nfs_fs.h
[edit]
[-] neighbour.h
[edit]
[-] ptp_clock.h
[edit]
[-] dcbnl.h
[edit]
[-] tipc_netlink.h
[edit]
[-] max2175.h
[edit]
[-] videodev2.h
[edit]
[-] nfs.h
[edit]
[-] phantom.h
[edit]
[-] joystick.h
[edit]
[-] nvram.h
[edit]
[-] fanotify.h
[edit]
[-] ptrace.h
[edit]
[-] net.h
[edit]
[-] screen_info.h
[edit]
[-] psci.h
[edit]
[-] binfmts.h
[edit]
[-] batadv_packet.h
[edit]
[-] zorro.h
[edit]
[-] sock_diag.h
[edit]
[-] btrfs_tree.h
[edit]
[-] atm_eni.h
[edit]
[-] uhid.h
[edit]
[-] atmlec.h
[edit]
[-] a.out.h
[edit]
[-] blkpg.h
[edit]
[-] igmp.h
[edit]
[-] dlm_device.h
[edit]
[-] if_vlan.h
[edit]
[-] netfilter_bridge.h
[edit]
[-] fib_rules.h
[edit]
[+]
wimax
[-] virtio_rng.h
[edit]
[-] if_plip.h
[edit]
[-] dlm.h
[edit]
[-] times.h
[edit]
[-] lwtunnel.h
[edit]
[-] rio_cm_cdev.h
[edit]
[-] atmapi.h
[edit]
[+]
spi
[-] virtio_blk.h
[edit]
[-] ipmi_msgdefs.h
[edit]
[-] virtio_pci.h
[edit]
[-] uio.h
[edit]
[-] cdrom.h
[edit]
[-] n_r3964.h
[edit]
[+]
byteorder
[-] isst_if.h
[edit]
[-] v4l2-controls.h
[edit]
[-] string.h
[edit]
[-] fsmap.h
[edit]
[-] tty_flags.h
[edit]
[-] if_ltalk.h
[edit]
[-] posix_acl.h
[edit]
[+]
sched
[-] idxd.h
[edit]
[-] mic_common.h
[edit]
[-] errno.h
[edit]
[-] swab.h
[edit]
[-] hdlc.h
[edit]
[-] types.h
[edit]
[-] rseq.h
[edit]
[-] libc-compat.h
[edit]
[+]
nfsd
[+]
netfilter
[-] chio.h
[edit]
[-] net_dropmon.h
[edit]
[-] cyclades.h
[edit]
[-] personality.h
[edit]
[-] sed-opal.h
[edit]
[-] ppp-ioctl.h
[edit]
[-] gpio.h
[edit]
[+]
genwqe
[-] unistd.h
[edit]
[-] ife.h
[edit]
[-] sdla.h
[edit]
[-] reiserfs_fs.h
[edit]
[-] if_pppox.h
[edit]
[-] if_fc.h
[edit]
[-] mic_ioctl.h
[edit]
[-] route.h
[edit]
[-] i2o-dev.h
[edit]
[-] const.h
[edit]
[-] posix_acl_xattr.h
[edit]
[-] atmppp.h
[edit]
[-] elfcore.h
[edit]
[-] pci_regs.h
[edit]
[-] lirc.h
[edit]
[-] blkzoned.h
[edit]
[-] serial_reg.h
[edit]
[-] serial_core.h
[edit]
[-] affs_hardblocks.h
[edit]
[-] phonet.h
[edit]
[-] oom.h
[edit]
[-] atmsvc.h
[edit]
[-] patchkey.h
[edit]
[-] baycom.h
[edit]
[-] ivtvfb.h
[edit]
[-] sctp.h
[edit]
[-] cfm_bridge.h
[edit]
[-] radeonfb.h
[edit]
[-] ila.h
[edit]
[-] udf_fs_i.h
[edit]
[-] udp.h
[edit]
[-] minix_fs.h
[edit]
[-] edd.h
[edit]
[-] gsmmux.h
[edit]
[-] signalfd.h
[edit]
[-] omapfb.h
[edit]
[-] bpf_common.h
[edit]
[-] x25.h
[edit]
[-] nfs_mount.h
[edit]
[-] dma-buf.h
[edit]
[-] if_cablemodem.h
[edit]
[-] zorro_ids.h
[edit]
[-] virtio_crypto.h
[edit]
[-] netfilter_decnet.h
[edit]
[-] errqueue.h
[edit]
[-] virtio_iommu.h
[edit]
[-] rfkill.h
[edit]
[-] kcov.h
[edit]
[-] audit.h
[edit]
[-] perf_event.h
[edit]
[-] batman_adv.h
[edit]
[-] fd.h
[edit]
[-] ip6_tunnel.h
[edit]
[-] dlmconstants.h
[edit]
[-] virtio_bt.h
[edit]
[-] virtio_scsi.h
[edit]
[-] nfs4.h
[edit]
[-] nubus.h
[edit]
[+]
can
[-] coda.h
[edit]
[-] vsockmon.h
[edit]
[-] major.h
[edit]
[-] i2c.h
[edit]
[-] fou.h
[edit]
[-] if_hippi.h
[edit]
[+]
netfilter_ipv4
[-] elf-em.h
[edit]
[-] reiserfs_xattr.h
[edit]
[-] utsname.h
[edit]
[-] devlink.h
[edit]
[-] fuse.h
[edit]
[-] wimax.h
[edit]
[-] kernel-page-flags.h
[edit]
[-] ipv6.h
[edit]
[+]
sunrpc
[-] tdx-guest.h
[edit]
[-] virtio_gpu.h
[edit]
[-] vbox_vmmdev_types.h
[edit]
[-] capi.h
[edit]
[-] ppdev.h
[edit]
[-] dlm_plock.h
[edit]
[-] kernelcapi.h
[edit]
[-] if_addr.h
[edit]
[-] dn.h
[edit]
[-] hash_info.h
[edit]
[-] ndctl.h
[edit]
[-] rio_mport_cdev.h
[edit]
[-] netfilter_ipv6.h
[edit]
[-] uuid.h
[edit]
[-] virtio_9p.h
[edit]
[-] uvcvideo.h
[edit]
[-] suspend_ioctls.h
[edit]
[-] vhost_types.h
[edit]
[-] net_namespace.h
[edit]
[-] blktrace_api.h
[edit]
[-] virtio_mmio.h
[edit]
[-] io_uring.h
[edit]
[-] atmioc.h
[edit]
[-] time.h
[edit]
[-] bpf_perf_event.h
[edit]
[-] virtio_snd.h
[edit]
[-] inotify.h
[edit]
[-] virtio_balloon.h
[edit]
[+]
dvb
[-] vfio_ccw.h
[edit]
[-] posix_types.h
[edit]
[-] erspan.h
[edit]
[-] coda_psdev.h
[edit]
[-] kernel.h
[edit]
[-] ipmi_ssif_bmc.h
[edit]
[-] xilinx-v4l2-controls.h
[edit]
[-] v4l2-mediabus.h
[edit]
[-] xattr.h
[edit]
[-] nbd.h
[edit]
[-] dqblk_xfs.h
[edit]
[+]
hdlc
[-] l2tp.h
[edit]
[-] nfc.h
[edit]
[-] if_frad.h
[edit]
[-] nfs3.h
[edit]
[-] cgroupstats.h
[edit]
[-] tls.h
[edit]
[-] pmu.h
[edit]
[-] cec-funcs.h
[edit]
[-] stat.h
[edit]
[-] atm_he.h
[edit]
[-] gameport.h
[edit]
[-] limits.h
[edit]
[-] flat.h
[edit]
[-] raw.h
[edit]
[-] cm4000_cs.h
[edit]
[-] iommu.h
[edit]
[-] net_tstamp.h
[edit]
[-] kcm.h
[edit]
[-] i2c-dev.h
[edit]
[-] virtio_vsock.h
[edit]
[-] v4l2-common.h
[edit]
[-] arm_sdei.h
[edit]
[-] kdev_t.h
[edit]
[-] usbip.h
[edit]
[-] stddef.h
[edit]
[-] bpqether.h
[edit]
[-] auxvec.h
[edit]
[-] if_xdp.h
[edit]
[-] qnx4_fs.h
[edit]
[-] openat2.h
[edit]
[-] cuda.h
[edit]
[-] icmp.h
[edit]
[+]
mmc
[-] seg6.h
[edit]
[-] matroxfb.h
[edit]
[-] meye.h
[edit]
[+]
android
[-] usbdevice_fs.h
[edit]
[-] xfrm.h
[edit]
[-] snmp.h
[edit]
[-] efs_fs_sb.h
[edit]
[-] lightnvm.h
[edit]
[-] taskstats.h
[edit]
[-] auto_fs.h
[edit]
[-] ipc.h
[edit]
[-] un.h
[edit]
[-] hid.h
[edit]
[-] btf.h
[edit]
[-] if_bridge.h
[edit]
[-] ethtool_netlink.h
[edit]
[-] mount.h
[edit]
[-] ip.h
[edit]
[-] if_alg.h
[edit]
[-] ipmi.h
[edit]
[-] kd.h
[edit]
[-] atmclip.h
[edit]
[-] seccomp.h
[edit]
[-] gen_stats.h
[edit]
[-] adb.h
[edit]
[-] firewire-constants.h
[edit]
[-] hyperv.h
[edit]
[-] lp.h
[edit]
[-] if_addrlabel.h
[edit]
[-] in.h
[edit]
[-] wanrouter.h
[edit]
[-] sockios.h
[edit]
[-] mei.h
[edit]
[+]
isdn
[-] mpls_iptunnel.h
[edit]
[-] uleds.h
[edit]
[-] atm_tcp.h
[edit]
[+]
tc_ematch
[-] dm-log-userspace.h
[edit]
[-] seg6_iptunnel.h
[edit]
[-] tcp.h
[edit]
[-] time_types.h
[edit]
[-] atm.h
[edit]
[-] magic.h
[edit]
[-] cycx_cfm.h
[edit]
[-] thermal.h
[edit]
[-] if.h
[edit]
[-] pr.h
[edit]
[+]
netfilter_arp
[-] mempolicy.h
[edit]
[-] securebits.h
[edit]
[-] wmi.h
[edit]
[-] keyboard.h
[edit]
[-] elf.h
[edit]
[-] pfkeyv2.h
[edit]
[-] tipc_config.h
[edit]
[-] veth.h
[edit]
[-] poll.h
[edit]
[-] in_route.h
[edit]
[+]
raid
[-] rxrpc.h
[edit]
[-] vtpm_proxy.h
[edit]
[-] kfd_sysfs.h
[edit]
[-] inet_diag.h
[edit]
[-] pg.h
[edit]
[-] if_infiniband.h
[edit]
[-] acct.h
[edit]
[-] input.h
[edit]
[-] unix_diag.h
[edit]
[-] sem.h
[edit]
[-] rpmsg.h
[edit]
[-] hsr_netlink.h
[edit]
[-] gtp.h
[edit]
[-] if_team.h
[edit]
[-] vbox_err.h
[edit]
[-] utime.h
[edit]
[-] vboxguest.h
[edit]
[-] pci.h
[edit]
[-] fs.h
[edit]
[-] atm_idt77105.h
[edit]
[-] toshiba.h
[edit]
[-] adfs_fs.h
[edit]
[-] switchtec_ioctl.h
[edit]
[-] auto_dev-ioctl.h
[edit]
[-] kexec.h
[edit]
[-] agpgart.h
[edit]
[-] if_bonding.h
[edit]
[-] bpf.h
[edit]
[-] fadvise.h
[edit]
[-] vfio.h
[edit]
[-] pktcdvd.h
[edit]
[-] sonet.h
[edit]
[-] if_ether.h
[edit]
[-] parport.h
[edit]
[-] uinput.h
[edit]
[-] pcitest.h
[edit]
[-] rtnetlink.h
[edit]
[-] cramfs_fs.h
[edit]
[-] nilfs2_api.h
[edit]
[-] coresight-stm.h
[edit]
[-] loop.h
[edit]
[-] fsl_hypervisor.h
[edit]
[+]
caif
[-] watchdog.h
[edit]
[-] bfs_fs.h
[edit]
[-] rose.h
[edit]
[-] resource.h
[edit]
[-] module.h
[edit]
[-] ppp-comp.h
[edit]
[+]
iio
[-] ax25.h
[edit]
[-] mroute6.h
[edit]
[-] hpet.h
[edit]
[-] irqnr.h
[edit]
[-] smc_diag.h
[edit]
[-] nfsacl.h
[edit]
[-] netdevice.h
[edit]
[-] signal.h
[edit]
[-] kvm_para.h
[edit]
[-] vfio_zdev.h
[edit]
[-] pfrut.h
[edit]
[-] xdp_diag.h
[edit]
[-] if_tunnel.h
[edit]
[-] bt-bmc.h
[edit]
[-] close_range.h
[edit]
[-] rds.h
[edit]
[-] fiemap.h
[edit]
[-] cec.h
[edit]
[-] llc.h
[edit]
[-] falloc.h
[edit]
[-] dm-ioctl.h
[edit]
[-] hysdn_if.h
[edit]
[-] qemu_fw_cfg.h
[edit]
[-] nvme_ioctl.h
[edit]
[-] bsg.h
[edit]
[-] mii.h
[edit]
[-] eventpoll.h
[edit]
[-] omap3isp.h
[edit]
[-] jffs2.h
[edit]
[-] can.h
[edit]
[-] packet_diag.h
[edit]
[-] netlink_diag.h
[edit]
[-] pps.h
[edit]
[-] atmsap.h
[edit]
[-] am437x-vpfe.h
[edit]
[-] ioctl.h
[edit]
[-] termios.h
[edit]
[-] scc.h
[edit]
[-] kcmp.h
[edit]
[-] soundcard.h
[edit]
[-] timex.h
[edit]
[-] virtio_config.h
[edit]
[-] ipsec.h
[edit]
[-] firewire-cdev.h
[edit]
[-] hw_breakpoint.h
[edit]
[-] serial.h
[edit]
[-] vt.h
[edit]
[-] wait.h
[edit]
[-] ipv6_route.h
[edit]
[-] sysctl.h
[edit]
[-] genetlink.h
[edit]
[-] filter.h
[edit]
[-] vhost.h
[edit]
[-] mtio.h
[edit]
[-] sonypi.h
[edit]
[-] if_ppp.h
[edit]
[-] target_core_user.h
[edit]
[-] atmdev.h
[edit]
[-] input-event-codes.h
[edit]
[-] nexthop.h
[edit]
[+]
netfilter_bridge
[-] if_packet.h
[edit]
[-] mdio.h
[edit]
[-] serio.h
[edit]
[-] capability.h
[edit]
[-] v4l2-dv-timings.h
[edit]
[-] psp-sev.h
[edit]
[-] virtio_mem.h
[edit]
[-] param.h
[edit]
[-] tcp_metrics.h
[edit]
[-] sev-guest.h
[edit]
[-] virtio_input.h
[edit]
[-] sched.h
[edit]
[-] cciss_defs.h
[edit]
[-] vm_sockets.h
[edit]
[-] quota.h
[edit]
[-] atm_nicstar.h
[edit]
[-] pkt_cls.h
[edit]
[-] pkt_sched.h
[edit]
[+]
tc_act
[-] bcm933xx_hcs.h
[edit]
[-] nfs_idmap.h
[edit]
[-] b1lli.h
[edit]
[-] aspeed-lpc-ctrl.h
[edit]
[-] mpls.h
[edit]
[-] if_x25.h
[edit]
[-] virtio_net.h
[edit]
[-] btrfs.h
[edit]
[-] nitro_enclaves.h
[edit]
[-] sync_file.h
[edit]
[-] seg6_local.h
[edit]
[-] v4l2-subdev.h
[edit]
[-] isdn_divertif.h
[edit]
[-] apm_bios.h
[edit]
[-] smc.h
[edit]
[-] in6.h
[edit]
[-] if_pppol2tp.h
[edit]
[-] dccp.h
[edit]
[-] tipc.h
[edit]
[-] selinux_netlink.h
[edit]
[-] qnxtypes.h
[edit]
[-] socket.h
[edit]
[-] memfd.h
[edit]
[-] seg6_hmac.h
[edit]
[-] ultrasound.h
[edit]
[-] nbd-netlink.h
[edit]
[-] tee.h
[edit]
[-] i8k.h
[edit]
[-] atmarp.h
[edit]
[-] fb.h
[edit]
[-] nl80211.h
[edit]
[-] virtio_ids.h
[edit]
[-] ipx.h
[edit]
[-] icmpv6.h
[edit]
[-] if_phonet.h
[edit]
[-] romfs_fs.h
[edit]
[-] wireless.h
[edit]
[-] netfilter_ipv4.h
[edit]
[-] auto_fs4.h
[edit]
[-] netfilter.h
[edit]
[-] if_arp.h
[edit]
[-] rtc.h
[edit]
[-] ip_vs.h
[edit]
[-] tty.h
[edit]
[-] stm.h
[edit]
[-] fcntl.h
[edit]
[-] mman.h
[edit]
[-] media-bus-format.h
[edit]
[-] futex.h
[edit]
[-] vm_sockets_diag.h
[edit]
[-] virtio_ring.h
[edit]
[-] if_macsec.h
[edit]