freebsd-src/sys
Martin Matuska bb8580e7a6 zfs: fix cross-build after openzfs/zfs@e63d026b9d
Workaround multiple cross-build issues in OpenZFS code

TBD: discuss long-term fix with OpenZFS
2025-11-17 17:12:03 +01:00
..
amd64 vmm: Initialize AMD IOMMU command buffers 2025-11-12 07:39:29 -08:00
arm arm64: Add support to vchiq and bcm2835_audio (plus some fixes) 2025-11-14 19:27:46 -08:00
arm64 arm64: Add support to vchiq and bcm2835_audio (plus some fixes) 2025-11-14 19:27:46 -08:00
bsm
cam cam: Add a number of asserts to catch bad transactions 2025-11-06 11:53:40 -07:00
cddl zfs: fix build after openzfs/zfs@e63d026b9 2025-11-17 17:11:56 +01:00
compat LinuxKPI: 802.11: clear CONF_IDLE earlier 2025-11-10 19:41:08 +00:00
conf sys/conf/files: Add iwx driver 2025-11-15 04:18:45 +01:00
contrib zfs: fix cross-build after openzfs/zfs@e63d026b9d 2025-11-17 17:12:03 +01:00
crypto sys/crypto: import md5c.c C rewrite 2025-10-24 12:16:58 +02:00
ddb
dev snd_hda: Patch Lenovo V15 2025-11-17 17:09:18 +01:00
dts
fs cuse: Fix cdevpriv bugs in cuse_client_open() 2025-11-13 13:11:06 +01:00
gdb
geom geom/zero: Add support for unmapped I/O 2025-11-11 17:06:59 +01:00
gnu
i386 kexec: Add dummy headers for arm, i386, powerpc, and riscv 2025-10-27 10:33:51 -04:00
isa Revert "isa: Use gone_in_dev(9) for deprecation message" 2025-10-28 08:19:39 -04:00
kern file: Add a fdclose method 2025-11-16 18:20:15 +00:00
kgssapi
libkern libkern: Use proper prototype for SYSINIT functions 2025-10-13 18:12:31 +08:00
modules zfs: fix build after openzfs/zfs@e63d026b9 2025-11-17 17:11:56 +01:00
net sys/net/sff8436.h: Fix the register address of link length of copper or active cable 2025-11-17 01:02:02 +08:00
net80211 net80211: create accessors for accessing the ieee80211_key key/mic data 2025-11-11 08:06:29 -08:00
netgraph ng_device: add kqueue support 2025-10-27 12:45:30 +00:00
netinet tcp: improve comments in the syncache code 2025-11-07 10:27:56 -05:00
netinet6 mld6: Properly initialize MLD packet options 2025-11-02 17:10:20 +00:00
netipsec ipsec_offload: do not leak drv_spi unr 2025-11-04 21:20:39 +02:00
netlink netlink: plug lock leak in genl_register_family() 2025-11-08 10:02:32 -08:00
netpfil pf: fix udp_mapping cleanup 2025-11-17 16:48:04 +01:00
netsmb
nfs nfs: Use proper prototype for SYSINIT functions 2025-10-13 18:12:34 +08:00
nfsclient
nfsserver
nlm
ofed
opencrypto
powerpc random: allow disabling of entropy harvesting from keyboard & mice 2025-11-10 18:47:41 -08:00
riscv random: allow disabling of entropy harvesting from keyboard & mice 2025-11-10 18:47:41 -08:00
rpc sys/rpc: UNIX auth: Do not log on bogus AUTH_SYS messages 2025-10-14 14:56:54 +02:00
security audit(4): Fix a typo in an kernel error message 2025-10-29 16:44:46 +01:00
sys efi.h: Bring in sys/types.h explicitly now 2025-11-16 17:16:44 -07:00
teken
tests tcp: improve testing of HPTS 2025-10-13 22:31:30 +02:00
tools gdb: Make development a bit easier 2025-10-27 16:33:34 +00:00
ufs ffs_truncate: correct INVARIANTS panic debug output 2025-10-14 21:03:04 -07:00
vm vm_domainset: Ensure round-robin works properly 2025-10-17 17:18:53 +02:00
x86 NOTES: Add iwm and iwx 2025-11-15 04:18:51 +01:00
xdr
xen
Makefile
README.md

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.

Documentation:

Source code documentation is maintained in a set of man pages, under section 9. These pages are located in share/man/man9, from the top-level of the src tree. Consult intro(9) for an overview of existing pages.

Some additional high-level documentation of the kernel is maintained in the Architecture Handbook.

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 and other arch independent code
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(4)
vm virtual memory system
x86 code shared by AMD64 and i386 architectures