sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by: emasteSponsored by: The FreeBSD FoundationMFC after: 1 weekDiffer
Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by: emasteSponsored by: The FreeBSD FoundationMFC after: 1 weekDifferential revision: https://reviews.freebsd.org/D32878
show more ...
sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with: `cd sys/modules; make ALL_MODULES=` on amd64MFC after: 1 monthSponsored by: Dell EMC Isilon
Initialize the pbuf counter for directio using SYSINIT, instead ofusing a direct hook called from kern_vfs_bio_buffer_alloc().Mark ffs_rawread.c as requiring both ffs and directio options to becom
Initialize the pbuf counter for directio using SYSINIT, instead ofusing a direct hook called from kern_vfs_bio_buffer_alloc().Mark ffs_rawread.c as requiring both ffs and directio options to becompiled into the kernel. Add ffs_rawread.c to the list of ufs.komodule' sources.In addition to stopping breaking the layering violation, it alsoallows to link kernel when FFS is configured as module and DIRECTIO isenabled.One consequence of the change is that ffs_rawread.o is always linkedinto the module regardless of the DIRECTIO option. This is similar tothe option QUOTA and ufs_quota.c.Sponsored by: The FreeBSD FoundationMFC after: 1 week
Fix module build after r243245.
Retire opt_ffs_broken_fixme.h.Instead of directly calling ffs_snapgone(), use UFS_SNAPGONE() withusual layering.Requested by: bdeMFC after: 1 week
Remove opt_mac.h generation for various kernel modules that no longerrequire it.Submitted by: pjd
Allow this module to get its options from the kernel build directoryinstead of always hard coding them in CFLAGS. POLA is kept here:The module file built with GENERIC stays the same.Tested with:
Allow this module to get its options from the kernel build directoryinstead of always hard coding them in CFLAGS. POLA is kept here:The module file built with GENERIC stays the same.Tested with: md5(1)
Hook up gjournal bits to the build.Sponsored by: home.pl
Remove ufs_ihash.c here as well.
Add a few missing opt_ files to make this module compile again.
Add a makefile for building UFS as a module. Since it is of marginaluse it is not built by default, and there are currently bugs thatprevent UFS from being unloaded. Nevertheless it can be useful w
Add a makefile for building UFS as a module. Since it is of marginaluse it is not built by default, and there are currently bugs thatprevent UFS from being unloaded. Nevertheless it can be useful whendeveloping UFS code on network-booted machines.