freebsd-src/sys
Oskar Holmlund 8f0b210894 Update path for TI Am335x device trees
Since Linux DTS has been starting to using vendor subdirs we need
to update this aswell.

Approved by: manu (mentor)
Differential revision: https://reviews.freebsd.org/D53890
2025-12-05 19:32:50 +01:00
..
amd64 sys: RealTek -> Realtek 2025-11-26 23:19:26 -07:00
arm sys: Remove/update references to the swapper process in various comments 2025-12-04 14:52:59 -05:00
arm64 ARM GICv3: Add support for non-coherent and/or bus address range limited DMA. 2025-12-03 07:47:41 +01:00
bsm
cam cam: set reladr in scsi_read_capacity_16 2025-12-05 00:13:22 -07:00
cddl zfs: fix build after openzfs/zfs@e63d026b9 2025-11-17 17:11:56 +01:00
compat LinuxKPI: mt76: depend on CONFIG_NET_MEDIATEK_SOC_WED 2025-12-03 19:54:44 +00:00
conf arm64: Add missing dtrace_isa.c 2025-12-03 07:47:41 +01:00
contrib mt76: add LINUXKPI_PARAM_PREFIX for module_param* 2025-12-03 19:54:45 +00:00
crypto sys/crypto: import md5c.c C rewrite 2025-10-24 12:16:58 +02:00
ddb
dev xhci: Add header values for Debug Capability (DbC) 2025-12-05 10:18:02 +00:00
dts sys/dts/arm/ufs.dts: fix compile error 2025-12-05 18:27:57 +01:00
fs nfs_nfsdstate.c: Add sanity checks for lock stateids 2025-11-26 11:20:27 -08:00
gdb
geom geom/zero: Add support for unmapped I/O 2025-11-11 17:06:59 +01:00
gnu
i386 sys: Remove/update references to the swapper process in various comments 2025-12-04 14:52:59 -05:00
isa Revert "isa: Use gone_in_dev(9) for deprecation message" 2025-10-28 08:19:39 -04:00
kern MAC: Rename mac_cred_create_swapper to mac_cred_create_kproc0 2025-12-04 14:52:59 -05:00
kgssapi kgssapi: Remove broken MOD_UNLOAD code 2025-11-27 20:29:55 -05:00
libkern
modules Update path for TI Am335x device trees 2025-12-05 19:32:50 +01:00
net net: remove dom_ifmtu 2025-12-04 11:16:25 -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: retire do_newsack - always adhere to RFC6675 SACK 2025-12-05 14:10:37 +01:00
netinet6 netinet6: use IF_ADDR_LOCK instead of IF_AFDATA_LOCK in defrtr_ipv6_only_ifp 2025-12-05 08:29:00 -08:00
netipsec ipsec: Fix typos in references to IPsec's ESP 2025-12-04 16:17:12 +01:00
netlink netlink: Fix overallocation of netlink message buffers 2025-11-24 10:55:05 -05:00
netpfil pf: convert DIOCRGETASTATS to netlink 2025-12-05 13:24:52 +01:00
netsmb
nfs
nfsclient
nfsserver
nlm
ofed
opencrypto
powerpc powerpc/_stdint.h: fix SIG_ATOMIC_{MIN,MAX,WIDTH} 2025-12-02 14:34:24 +01:00
riscv riscv/pmap: Handle superpages in pmap_extract_and_hold() 2025-12-03 13:41:30 +00:00
rpc
security MAC: Rename mac_cred_create_swapper to mac_cred_create_kproc0 2025-12-04 14:52:59 -05:00
sys bus: Return 0 if reading an ivar fails 2025-12-05 15:57:37 +01:00
teken
tests
tools gdb: Fix some PEP 8 violations 2025-11-19 14:00:05 +00:00
ufs
vm sys: Remove/update references to the swapper process in various comments 2025-12-04 14:52:59 -05:00
x86 sys/stdint.h: add C23 _WIDTH macros 2025-11-30 20:21: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