freebsd-src/sys
Andrew Turner 2f198d313b ossl: Update arm_arch.h from OpenSSL 1.1.1 to 3.0
Reviewed by:	emaste
Sponsored by:	Arm Ltd
Differential Revision:	https://reviews.freebsd.org/D41939
2023-09-22 18:15:14 +01:00
..
amd64 amd64: Convert a cheap DIAGNOSTIC check to a KASSERT 2023-09-17 06:27:31 -04:00
arm arm/allwinner: fix variables initialization in clkng 2023-09-20 19:37:50 +02:00
arm64 arm64: rockchip: rk_clk_composite: Remove gate code 2023-09-21 17:49:33 +02:00
bsm
cam
cddl kinst: do not look for a function epilogue 2023-09-15 16:33:41 +01:00
compat LinuxKPI: 802.11: setup a default link[0] and adjust related needs 2023-09-21 17:09:01 +00:00
conf arm64: zynqmp: Add clock driver 2023-09-18 15:23:26 +02:00
contrib iwlwifi: local namespace change for sysctl 2023-09-21 22:09:00 +00:00
crypto ossl: Update arm_arch.h from OpenSSL 1.1.1 to 3.0 2023-09-22 18:15:14 +01:00
ddb
dev iicbus: pmic: rk8xx: Fix logic in clock-output-names detection 2023-09-22 18:51:33 +02:00
dts
fs devfs: add integrity asserts for cdevp_list 2023-09-21 11:51:12 -05:00
gdb
geom Fix geom build with clang 17 and KTR enabled 2023-09-17 14:13:09 +02:00
gnu
i386
isa
kern devfs: add integrity asserts for cdevp_list 2023-09-21 11:51:12 -05:00
kgssapi
libkern
modules arm64: dtb: Add rk3568-nanopi-r5s.dts to the build 2023-09-22 18:51:33 +02:00
net sysctl: Update 'master' copy of vnet SYSCTLs on kernel environment variables change 2023-09-21 12:11:28 +08:00
net80211 net80211: introduce two extra ieee80211_notify_scan_done() 2023-09-21 17:37:55 +00:00
netgraph
netinet sctp: further improve shutting down the read side of a socket 2023-09-13 13:02:51 +02:00
netinet6 Avoid IPv6 source address selection on accepting TCP connections 2023-09-14 11:39:06 +03:00
netipsec
netlink netlink: add unregister call in cleanup 2023-09-22 10:44:03 -04:00
netpfil pf: Convert PF_DEFAULT_TO_DROP into a vnet loader tunable 'net.pf.default_to_drop' 2023-09-22 18:05:02 +08:00
netsmb
nfs
nfsclient
nfsserver
nlm
ofed
opencrypto
powerpc powerpc: Implement fpu_kern_enter/fpu_kern_leave 2023-09-17 13:21:04 -04:00
riscv
rpc
security
sys sysctl: Update 'master' copy of vnet SYSCTLs on kernel environment variables change 2023-09-21 12:11:28 +08:00
teken
tests
tools
ufs
vm vm_radix: add a missing paren 2023-09-12 04:19:51 -05:00
x86 x86: Add defines for workaround bits in AMD's MSR "Decode Configuration" 2023-09-14 16:24:48 +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(7)
vm virtual memory system
x86 code shared by AMD64 and i386 architectures