|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| amd64/ | H | - | - | 151,944 | 115,740 |
| arm/ | H | - | - | 208,372 | 142,446 |
| arm64/ | H | - | - | 154,217 | 113,102 |
| bsm/ | H | - | - | 2,150 | 1,572 |
| cam/ | H | - | - | 123,203 | 91,223 |
| cddl/ | H | - | - | 104,784 | 77,173 |
| compat/ | H | - | - | 130,471 | 94,861 |
| conf/ | H | - | - | 22,670 | 20,614 |
| contrib/ | H | - | - | 5,226,986 | 4,044,876 |
| crypto/ | H | - | - | 477,058 | 418,254 |
| ddb/ | H | - | - | 9,047 | 6,003 |
| dev/ | H | - | - | 4,434,500 | 3,302,815 |
| dts/ | H | - | - | 14,135 | 12,443 |
| fs/ | H | - | - | 159,104 | 114,623 |
| gdb/ | H | - | - | 2,264 | 1,534 |
| geom/ | H | - | - | 88,040 | 68,684 |
| gnu/ | H | - | - | 29,150 | 26,230 |
| i386/ | H | - | - | 73,198 | 55,798 |
| isa/ | H | - | - | 4,140 | 2,642 |
| kern/ | H | - | - | 310,612 | 226,035 |
| kgssapi/ | H | - | - | 6,802 | 4,182 |
| libkern/ | H | - | - | 9,544 | 5,091 |
| modules/ | H | - | - | 20,020 | 11,109 |
| net/ | H | - | - | 108,305 | 73,788 |
| net80211/ | H | - | - | 60,973 | 42,187 |
| netgraph/ | H | - | - | 84,400 | 55,145 |
| netinet/ | H | - | - | 226,763 | 162,202 |
| netinet6/ | H | - | - | 43,465 | 28,716 |
| netipsec/ | H | - | - | 22,572 | 16,450 |
| netlink/ | H | - | - | 13,707 | 9,983 |
| netpfil/ | H | - | - | 140,734 | 101,603 |
| netsmb/ | H | - | - | 7,233 | 5,624 |
| nfs/ | H | - | - | 4,198 | 2,954 |
| nfsclient/ | H | - | - | 808 | 449 |
| nfsserver/ | H | - | - | 379 | 203 |
| nlm/ | H | - | - | 6,664 | 4,837 |
| ofed/ | H | - | - | 74,060 | 52,971 |
| opencrypto/ | H | - | - | 11,808 | 8,438 |
| powerpc/ | H | - | - | 108,271 | 73,628 |
| riscv/ | H | - | - | 34,153 | 22,374 |
| rpc/ | H | - | - | 19,422 | 12,391 |
| security/ | H | - | - | 47,946 | 32,909 |
| sys/ | H | - | - | 86,404 | 53,575 |
| teken/ | H | - | - | 3,811 | 2,807 |
| tests/ | H | - | - | 2,379 | 1,757 |
| tools/ | H | - | - | 7,069 | 4,715 |
| ufs/ | H | - | - | 45,198 | 31,097 |
| vm/ | H | - | - | 50,996 | 32,097 |
| x86/ | H | - | - | 55,161 | 38,835 |
| xdr/ | H | - | - | 1,833 | 1,110 |
| xen/ | H | - | - | 4,523 | 1,995 |
| Makefile | H A D | 09-Jul-2024 | 2 KiB | 68 | 47 |
| README.md | H A D | 08-Jun-2024 | 2.7 KiB | 61 | 54 |
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 and other arch independent code |
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(4)` |
59| vm | virtual memory system |
60| x86 | code shared by AMD64 and i386 architectures |
61