freebsd-src/sys
Glen Barber 136fc49561 release: update main to ALPHA1
Update CURRENT to ALPHA1 as part of the 14.0-RELEASE cycle.

Approved by:	re (implicit)
Sponsored by:	GoFundMe https://www.gofundme.com/f/gjbbsd
Sponsored by:	PayPal https://paypal.me/gjbbsd
2023-08-10 20:02:11 -04:00
..
amd64 ath(4): Remove MIPS AHB frontend and join PCI one w/ main support again 2023-08-08 22:30:13 +02:00
arm arm64: xilinx: gpio: Add support for ZynqMP SoC 2023-08-10 09:21:55 +02:00
arm64 arm64: rockchip: rk_i2c: Probe again at ORDER_LATE 2023-08-09 10:50:04 +02:00
bsm
cam cam(4): Fix a typo in a source code comment 2023-08-02 11:14:53 +02:00
cddl
compat LinuxKPI: add page pool skeleton 2023-08-10 00:05:48 +00:00
conf release: update main to ALPHA1 2023-08-10 20:02:11 -04:00
contrib zfs: cherry-pick fix from openzfs 2023-08-10 10:11:52 +02:00
crypto ossl: Add missing labels to bsaes-armv7.S 2023-08-07 10:17:16 -04:00
ddb
dev igc: sync srrctl buffer sizing with e1000 2023-08-10 07:43:16 -07:00
dts dts: Bump the freebsd branding version to 6.4 2023-08-09 15:36:55 +02:00
fs tmpfs: add a knob to enable pgcache read for mount 2023-08-09 06:54:15 +03:00
gdb
geom g_raid concat: Fail requests to read beyond the end of the volume 2023-08-04 16:41:05 -07:00
gnu
i386 ath(4): Remove MIPS AHB frontend and join PCI one w/ main support again 2023-08-08 22:30:13 +02:00
isa
kern kern: osd: avoid dereferencing freed slots 2023-08-10 12:33:26 -05:00
kgssapi
libkern
modules ath(4): Remove MIPS SoC build glue and AR9130 from FreeBSD HAL 2023-08-09 17:44:46 +02:00
net iflib: Remove redundant variable 2023-08-07 15:46:48 -07:00
net80211 net80211: Radiotap: add two more EHT defines 2023-08-07 01:22:53 +00:00
netgraph
netinet sctp: another cleanup 2023-08-09 04:17:52 +02:00
netinet6 sctp: remove duplicate code 2023-08-08 13:05:39 +02:00
netipsec
netlink netlink: Align allocations on __max_align_t, not uint64_t. 2023-08-10 11:12:52 -07:00
netpfil pf: handle multiple IPv6 fragment headers 2023-08-04 15:23:49 +02:00
netsmb netsmb: Add bounds checking to smb_t2_placedata 2023-08-04 16:42:41 -07:00
nfs
nfsclient
nfsserver
nlm
ofed
opencrypto
powerpc ath(4): Remove MIPS AHB frontend and join PCI one w/ main support again 2023-08-08 22:30:13 +02:00
riscv
rpc
security
sys rangesets: use PCTRIE_DEFINE 2023-08-09 02:26:25 -05:00
teken
tests
tools
ufs UFS: panic rather than forcibly unmount the root fs 2023-08-10 09:59:06 -07:00
vm Update comment describing struct vm_map 2023-08-10 09:01:26 +03:00
x86 msi: report error for attempt to use APIC ID > 255 2023-08-09 13:52:43 -04:00
xdr
xen
Makefile
README.md sys/README.md: Add a section for documentation 2023-08-03 11:07:41 -03: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.

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