Name Date Size #Lines LOC

..--

amd64/H05-Sep-2024-116,84887,519

arm/H05-Sep-2024-222,201155,244

arm64/H05-Sep-2024-102,07174,530

bsm/H05-Sep-2024-2,1471,569

cam/H07-Feb-2025-121,29189,770

cddl/H05-Sep-2024-103,32076,049

compat/H05-Sep-2024-137,733101,093

conf/H07-Feb-2025-18,19516,270

contrib/H05-Sep-2024-3,844,5372,860,650

crypto/H05-Sep-2024-303,118276,379

ddb/H05-Sep-2024-8,2075,393

dev/H05-Sep-2024-4,167,4653,140,321

dts/H05-Sep-2024-18,24416,076

fs/H05-Sep-2024-146,051105,338

gdb/H05-Sep-2024-2,2811,538

geom/H05-Sep-2024-86,57867,576

gnu/H05-Sep-2024-29,15626,234

i386/H05-Sep-2024-64,92147,895

isa/H07-Feb-2025-4,2442,718

kern/H05-May-2025-277,547201,728

kgssapi/H05-Sep-2024-7,8595,062

libkern/H05-Sep-2024-10,2475,394

mips/H05-Sep-2024-133,66489,787

modules/H05-Sep-2024-20,42710,421

net/H05-May-2025-109,41774,265

net80211/H07-Feb-2025-60,53441,961

netgraph/H05-May-2025-91,54859,907

netinet/H05-May-2025-211,769150,926

netinet6/H05-May-2025-44,29629,276

netipsec/H05-May-2025-20,28614,481

netlink/H05-Sep-2024-11,7208,451

netpfil/H05-Sep-2024-130,99193,752

netsmb/H07-Feb-2025-7,2425,633

nfs/H05-Sep-2024-4,3353,030

nfsclient/H05-Sep-2024-1,042559

nfsserver/H05-Sep-2024-647307

nlm/H05-Sep-2024-6,6504,815

ofed/H05-Sep-2024-66,02147,729

opencrypto/H05-Sep-2024-12,0018,542

powerpc/H05-Sep-2024-108,46173,811

riscv/H05-Sep-2024-27,04317,638

rpc/H07-Feb-2025-21,11213,465

security/H05-Sep-2024-42,94629,501

sys/H05-May-2025-79,31548,575

teken/H05-Sep-2024-3,8142,807

tests/H05-Sep-2024-1,9701,496

tools/H07-Feb-2025-5,9134,107

ufs/H05-Sep-2024-45,07930,977

vm/H05-May-2025-47,83529,934

x86/H05-Sep-2024-52,44336,407

xdr/H07-Feb-2025-1,8531,130

xen/H05-Sep-2024-27,97910,749

MakefileHD05-Sep-20242.1 KiB7250

README.mdHD05-Sep-20242.6 KiB6154

README.md

1FreeBSD Kernel Source:
2----------------------
3
4This directory contains the source files and build glue that make up the FreeBSD
5kernel and its modules, including both original and contributed software.
6
7Kernel configuration files are located in the `conf/` subdirectory of each
8architecture. `GENERIC` is the configuration used in release builds. `NOTES`
9contains documentation of all possible entries. `LINT` is a compile-only
10configuration used to maximize build coverage and detect regressions.
11
12Documentation:
13--------------
14
15Source code documentation is maintained in a set of man pages, under section 9.
16These pages are located in [`share/man/man9`](../share/man/man9), from the
17top-level of the src tree. Consult [`intro(9)`](https://man.freebsd.org/intro/9)
18for an overview of existing pages.
19
20Some additional high-level documentation of the kernel is maintained in the
21[Architecture Handbook](https://docs.freebsd.org/en/books/arch-handbook/).
22
23Source Roadmap:
24---------------
25| Directory | Description |
26| --------- | ----------- |
27| amd64 | AMD64 (64-bit x86) architecture support |
28| arm | 32-bit ARM architecture support |
29| arm64 | 64-bit ARM (AArch64) architecture support |
30| cam | Common Access Method storage subsystem - `cam(4)` and `ctl(4)` |
31| cddl | CDDL-licensed optional sources such as DTrace |
32| conf | kernel build glue |
33| compat | Linux compatibility layer, FreeBSD 32-bit compatibility |
34| contrib | 3rd-party imported software such as OpenZFS |
35| crypto | crypto drivers |
36| ddb | interactive kernel debugger - `ddb(4)` |
37| fs | most filesystems, excluding UFS, NFS, and ZFS |
38| dev | device drivers |
39| gdb | kernel remote GDB stub - `gdb(4)` |
40| geom | GEOM framework - `geom(4)` |
41| i386 | i386 (32-bit x86) architecture support |
42| kern | main part of the kernel |
43| libkern | libc-like and other support functions for kernel use |
44| modules | kernel module infrastructure |
45| net | core networking code |
46| net80211 | wireless networking (IEEE 802.11) - `net80211(4)` |
47| netgraph | graph-based networking subsystem - `netgraph(4)` |
48| netinet | IPv4 protocol implementation - `inet(4)` |
49| netinet6 | IPv6 protocol implementation - `inet6(4)` |
50| netipsec | IPsec protocol implementation - `ipsec(4)` |
51| netpfil | packet filters - `ipfw(4)`, `pf(4)`, and `ipfilter(4)` |
52| opencrypto | OpenCrypto framework - `crypto(7)` |
53| powerpc | PowerPC/POWER (32 and 64-bit) architecture support |
54| riscv | 64-bit RISC-V architecture support |
55| security | security facilities - `audit(4)` and `mac(4)` |
56| sys | kernel headers |
57| tests | kernel unit tests |
58| ufs | Unix File System - `ffs(7)` |
59| vm | virtual memory system |
60| x86 | code shared by AMD64 and i386 architectures |
61