1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00
freebsd/sys
Konstantin Belousov d3849ec3c9 Set installed kernel and driver files access modes using KMODMODE var
Reviewed by:	emaste, imp
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D42768
2023-11-25 20:40:39 +02:00
..
amd64 makesyscalls: don't make syscall.mk by default 2023-11-18 00:48:14 +00:00
arm bcm2835/spi: Support SPI_FLAG_KEEP_CS 2023-11-14 16:47:35 -05:00
arm64 aarch64 nexus: Fix a mismerge in nexus_activate_resource 2023-11-24 14:00:33 -08:00
bsm timerfd: Move implementation from linux compat to sys/kern 2023-08-24 14:28:56 -06:00
cam ctl_ha: don't shutdown threads if scheduler is stopped 2023-11-23 12:07:42 -04:00
cddl boot/zfs: Add some fields to dsl_dir_phys_t 2023-10-23 11:12:14 -04:00
compat linuxkpi: GFP_KERNEL equals M_NOWAIT now 2023-11-24 18:31:32 +01:00
conf Set installed kernel and driver files access modes using KMODMODE var 2023-11-25 20:40:39 +02:00
contrib zfs: merge openzfs/zfs@a94860a6d 2023-11-21 01:46:00 +01:00
crypto OpenSSL: regenerate asm files for 3.0.12 2023-10-25 13:29:35 -04:00
ddb ddb: Add sysctl flag CTLFLAG_TUN to loader tunable 2023-10-09 18:30:21 +08:00
dev ata: Retire unused variable / externs 2023-11-24 11:27:38 -07:00
dts sys: Remove $FreeBSD$: one-line bare tag 2023-08-16 11:55:17 -06:00
fs pseudofs: fix off by one in hash iteration in pfs_purge 2023-11-20 05:57:25 +00:00
gdb
geom shutdown: audit shutdown_post_sync event callbacks 2023-11-23 12:07:42 -04:00
gnu
i386 makesyscalls: don't make syscall.mk by default 2023-11-18 00:48:14 +00:00
isa isa: Postpone removal of the non-PNP driver until 15 2023-10-29 04:31:11 +08:00
kern new-bus: Disable assertions for rman mismatches for activate/deactivate 2023-11-25 10:32:19 -08:00
kgssapi nfscl/kgssapi: Fix Kerberized NFS mounts to pNFS servers 2023-10-23 13:21:14 -07:00
libkern arm64: Mark the armv8 crc32c as supporting BTI 2023-11-21 11:25:43 +00:00
modules hpts: install kernel module 2023-11-21 09:22:46 -08:00
net if_tuntap: add LRO support to tap devices 2023-11-19 15:57:53 +01:00
net80211 net80211: add ieee80211_add_vhtcap_ch() 2023-11-03 21:08:04 +00:00
netgraph ng_ksocket: fix accept(2) 2023-11-17 09:24:30 -08:00
netinet alq, siftr: add panic/debugger checks to shutdown hooks 2023-11-23 12:07:42 -04:00
netinet6 udplite: make socketoption available on IPv6 sockets 2023-11-05 15:28:54 +01:00
netipsec
netlink netlink: fix potential llentry lock leak in newneigh handler 2023-10-23 16:24:51 +02:00
netpfil pf: sctp heartbeats confirm a connection 2023-11-17 23:33:44 +01:00
netsmb
nfs
nfsclient
nfsserver
nlm nlm: Fix error messages for failed remote rpcbind contact 2023-11-09 21:54:28 +01:00
ofed ibcore: Introduce enum ib_raw_packet_caps from Linux 4.11 2023-10-28 16:59:14 -04:00
opencrypto
powerpc ehci_ps3: Remove unused struct definition. 2023-11-23 11:14:02 -08:00
riscv riscv nexus: Sort bus_set_resource in DEVMETHOD table 2023-11-24 09:28:40 -08:00
rpc lib/libc/rpc: switch the per-fd structs in clnt_{dg,vc}.c to RB Trees 2023-11-15 16:12:50 -07:00
security Remove gratuitous copyouts of unchanged struct mac. 2023-11-13 21:32:15 +00:00
sys newbus: Add a set of bus resource helpers for nexus-like devices 2023-11-24 09:28:00 -08:00
teken teken: fix style in teken_wcwidth.h 2023-10-13 08:14:57 +03:00
tests netlink: move NETLINK define to opt_global.h 2023-10-13 09:23:47 +02:00
tools makesyscall: Simplify a bit emitting syscall declarations 2023-11-21 13:25:34 -05:00
ufs Spacing and alignment cleanups. 2023-11-17 14:40:09 -08:00
vm vm_phys: fix freelist_contig 2023-11-15 03:25:45 -06:00
x86 x86 nexus: Use bus_generic_rman_*_resource 2023-11-24 09:28:10 -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(7)
vm virtual memory system
x86 code shared by AMD64 and i386 architectures