opnsense-src/sys
Vladimir Kondratyev 8f7ae0928e usbhid(4): Implement USB_REQUEST command in hid_ioctl method
This command is intended to be compatible with USB_REQUEST ioctl.
It is required to perform arbitrary control endpoint requests by device
drivers which can switch between HID and native non-HID modes.

(cherry picked from commit 82e38b012c)
2022-12-24 11:33:26 +03:00
..
amd64 vmm: Fix AP startup with old userspace binaries. 2022-12-22 10:12:22 +01:00
arm xilinx: Fix a typo in a source code comment 2022-11-04 06:06:34 +01:00
arm64 arm64: add a spin-table implementation for Apple Silicon 2022-12-06 12:26:56 -06:00
bsm
cam CTL: Use atomics for tags in ioctl frontend. 2022-12-12 20:15:53 -05:00
cddl dtrace: Drop illumos ifdefs for CPU register definitions 2022-10-19 10:15:49 -04:00
compat rb_tree: fix stable/13 linux/rbtree.h post ABI fix 2022-12-19 16:03:13 -06:00
conf bcm5974: wsp(4) driver version with HID attachment. 2022-12-24 11:33:26 +03:00
contrib zfs: merge openzfs/zfs@21bd76613 (zfs-2.1-release) into stable/13 2022-12-06 19:41:20 +01:00
crypto OpenSSL: Regen assembly file for OpenSSSL 1.1.1s 2022-11-17 21:45:26 -05:00
ddb ddb: print the actual syscall name 2022-11-06 10:54:46 -04:00
dev usbhid(4): Implement USB_REQUEST command in hid_ioctl method 2022-12-24 11:33:26 +03:00
dts
fs fusefs: fix VOP_ADVLOCK with SEEK_END 2022-11-23 13:55:15 -07:00
gdb
geom Don't panic when tasting a disk with sectorsize=0 2022-11-23 13:57:47 -07:00
gnu
i386 ddb: print the actual syscall name 2022-11-06 10:54:46 -04:00
isa
kern imgact_binmisc: Optionally pre-open the interpreter vnode 2022-12-22 16:28:42 +00:00
kgssapi
libkern qdivrem: Predict division by zero as false. 2022-10-12 17:53:21 +02:00
mips
modules bcm5974: wsp(4) driver version with HID attachment. 2022-12-24 11:33:26 +03:00
net bridge: Fix a potential memory leak in bridge_enqueue() 2022-12-19 09:56:46 -05:00
net80211 net8021: Fix a typo in a kernel error message 2022-11-01 07:02:55 +01:00
netgraph netgraph/ng_bridge: add missing array terminator 2022-11-08 09:54:13 +01:00
netinet tcp_bbr(4): Fix a typo in a source code comment 2022-11-11 05:34:33 +01:00
netinet6 Import the WireGuard driver from zx2c4.com. 2022-11-11 13:44:11 -08:00
netipsec
netpfil pf: make pfsync_state_import appease an assert in pf_free_state 2022-12-05 20:27:01 +01:00
netsmb smb_smb_treedisconnect: eliminate write only variable mbp 2022-10-01 22:25:57 -06:00
nfs nfs: skip bootpc when vfs.root.mountfrom is other than nfs 2022-10-05 21:13:06 -03:00
nfsclient
nfsserver
nlm
ofed
opencrypto
powerpc powerpc: slb_alloc_user_cache: fix missing uma_zalloc wait flag 2022-10-05 21:14:29 -03:00
riscv riscv: improve parsing of riscv,isa property strings 2022-12-05 12:53:44 -04:00
rpc clnt_vc.c: Replace msleep() with pause() to avoid assert panic 2022-10-17 16:38:39 -07:00
security
sys imgact_binmisc: Optionally pre-open the interpreter vnode 2022-12-22 16:28:42 +00:00
teken
tests
tools
ufs Provide more precise mount(8) failure message. 2022-12-14 15:34:50 -08:00
vm ddb: don't limit pindex output in 'show vmopag' 2022-11-14 13:04:12 -04:00
x86 Simplify kernel sanitizer interceptors 2022-11-14 14:23:40 -05:00
xdr
xen
Makefile
README.md README.md: shift description of kernel config files 2022-12-05 12:32:39 -04:00

FreeBSD Kernel Source:

This directory contains the source files and build glue that make up the FreeBSD kernel and its modules, including both original and contributed software.

Kernel configuration files are located in the conf/ subdirectory of each architecture. GENERIC is the configuration used in release builds. NOTES contains documentation of all possible entries. LINT is a compile-only configuration used to maximize build coverage and detect regressions.

Source Roadmap:

Directory Description
amd64 AMD64 (64-bit x86) architecture support
arm 32-bit ARM architecture support
arm64 64-bit ARM (AArch64) architecture support
cam Common Access Method storage subsystem - cam(4) and ctl(4)
cddl CDDL-licensed optional sources such as DTrace
conf kernel build glue
compat Linux compatibility layer, FreeBSD 32-bit compatibility
contrib 3rd-party imported software such as OpenZFS
crypto crypto drivers
ddb interactive kernel debugger - ddb(4)
fs most filesystems, excluding UFS, NFS, and ZFS
dev device drivers
gdb kernel remote GDB stub - gdb(4)
geom GEOM framework - geom(4)
i386 i386 (32-bit x86) architecture support
kern main part of the kernel
libkern libc-like and other support functions for kernel use
modules kernel module infrastructure
net core networking code
net80211 wireless networking (IEEE 802.11) - net80211(4)
netgraph graph-based networking subsystem - netgraph(4)
netinet IPv4 protocol implementation - inet(4)
netinet6 IPv6 protocol implementation - inet6(4)
netipsec IPsec protocol implementation - ipsec(4)
netpfil packet filters - ipfw(4), pf(4), and ipfilter(4)
opencrypto OpenCrypto framework - crypto(7)
powerpc PowerPC/POWER (32 and 64-bit) architecture support
riscv 64-bit RISC-V architecture support
security security facilities - audit(4) and mac(4)
sys kernel headers
tests kernel unit tests
ufs Unix File System - ffs(7)
vm virtual memory system
x86 code shared by AMD64 and i386 architectures