1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-24 07:40:52 +00:00
freebsd/sys
Zhenlei Huang 6a2a385507 kern_fail: Stop checking for failures from fp_malloc(M_WAITOK)
`fp_malloc` is defined as a macro that redirects to `malloc`.

MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D45852
2024-09-03 18:25:16 +08:00
..
amd64 vmm: Make vmm_dev.h more self-contained 2024-09-01 14:03:15 +00:00
arm kernel: Make some compile time constant variables const 2024-08-30 18:26:30 +08:00
arm64 vmm: Make vmm_dev.h more self-contained 2024-09-01 14:03:15 +00:00
bsm
cam
cddl
compat LinuxKPI: add no_printk 2024-08-31 21:36:01 +00:00
conf kernel: Add defination of .init_array and .fini_array for all other platforms 2024-09-02 12:26:48 +08:00
contrib
crypto
ddb
dev vmm: Use make_dev_s() to create vmm devices 2024-09-01 14:09:17 +00:00
dts
fs nfsd: Fix handling of NFSv4 setable attributes 2024-08-27 14:19:33 -07:00
gdb
geom gpart: Add u-boot-env alias for U-Boot's environment GPT partition UUID 2024-09-02 23:21:18 +01:00
gnu
i386
isa
kern kern_fail: Stop checking for failures from fp_malloc(M_WAITOK) 2024-09-03 18:25:16 +08:00
kgssapi
libkern
modules vmm: Merge vmm_dev.c 2024-08-26 18:41:39 +00:00
net pf: rework pf_icmp_state_lookup() failure mode 2024-09-01 17:05:29 +02:00
net80211
netgraph
netinet carp: Fix pullup checks 2024-09-01 14:09:53 +00:00
netinet6 netinet: Explicitly disallow connections to the unspecified address 2024-08-29 13:11:15 +00:00
netipsec Revert "ipsec: Drain async ipsec_offload work when destroying a vnet" 2024-08-30 15:00:16 +00:00
netlink
netpfil pf: rework pf_icmp_state_lookup() failure mode 2024-09-01 17:05:29 +02:00
netsmb
nfs
nfsclient
nfsserver
nlm
ofed
opencrypto
powerpc kernel: Make some compile time constant variables const 2024-08-30 18:26:30 +08:00
riscv kernel: Make some compile time constant variables const 2024-08-30 18:26:30 +08:00
rpc
security
sys gpart: Add u-boot-env alias for U-Boot's environment GPT partition UUID 2024-09-02 23:21:18 +01:00
teken
tests
tools tools/sdiodevs2h.awk: introduce palias 2024-08-31 21:37:53 +00:00
ufs
vm dev_pager: define free_page for mgt devices 2024-08-21 15:48:59 -05:00
x86 kernel: Make some compile time constant variables const 2024-08-30 18:26:30 +08: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