aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ufs
Commit message (Collapse)AuthorAgeFilesLines
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* Initialize the pbuf counter for directio using SYSINIT, instead ofKonstantin Belousov2014-06-081-3/+3
| | | | | | | | | | | | | | | | | | | | | using a direct hook called from kern_vfs_bio_buffer_alloc(). Mark ffs_rawread.c as requiring both ffs and directio options to be compiled into the kernel. Add ffs_rawread.c to the list of ufs.ko module' sources. In addition to stopping breaking the layering violation, it also allows to link kernel when FFS is configured as module and DIRECTIO is enabled. One consequence of the change is that ffs_rawread.o is always linked into the module regardless of the DIRECTIO option. This is similar to the option QUOTA and ufs_quota.c. Sponsored by: The FreeBSD Foundation MFC after: 1 week Notes: svn path=/head/; revision=267226
* Fix module build after r243245.Konstantin Belousov2012-11-201-1/+2
| | | | Notes: svn path=/head/; revision=243339
* Retire opt_ffs_broken_fixme.h.Konstantin Belousov2011-03-201-2/+1
| | | | | | | | | | | Instead of directly calling ffs_snapgone(), use UFS_SNAPGONE() with usual layering. Requested by: bde MFC after: 1 week Notes: svn path=/head/; revision=219804
* Remove opt_mac.h generation for various kernel modules that no longerRobert Watson2009-06-061-1/+1
| | | | | | | | | require it. Submitted by: pjd Notes: svn path=/head/; revision=193588
* Allow this module to get its options from the kernel build directoryYaroslav Tykhiy2006-12-211-0/+2
| | | | | | | | | | instead of always hard coding them in CFLAGS. POLA is kept here: The module file built with GENERIC stays the same. Tested with: md5(1) Notes: svn path=/head/; revision=165450
* Hook up gjournal bits to the build.Pawel Jakub Dawidek2006-10-311-1/+1
| | | | | | | Sponsored by: home.pl Notes: svn path=/head/; revision=163851
* Remove ufs_ihash.c here as well.Poul-Henning Kamp2005-03-141-1/+1
| | | | Notes: svn path=/head/; revision=143563
* Add a few missing opt_ files to make this module compile again.Ian Dowse2003-06-231-2/+3
| | | | Notes: svn path=/head/; revision=116754
* Add a makefile for building UFS as a module. Since it is of marginalIan Dowse2002-06-301-0/+14
use it is not built by default, and there are currently bugs that prevent UFS from being unloaded. Nevertheless it can be useful when developing UFS code on network-booted machines. Notes: svn path=/head/; revision=99100