sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
tmpfs: unbreak module build outside of kernel build environmentMFC after: 3 days
Make TMPFS_PAGES_MINRESERVED a kernel optionTMPFS_PAGES_MINRESERVED controls how much memory is reserved for the systemand not used by tmpfs.On very small memory systems, the default value may b
Make TMPFS_PAGES_MINRESERVED a kernel optionTMPFS_PAGES_MINRESERVED controls how much memory is reserved for the systemand not used by tmpfs.On very small memory systems, the default value may be too high and thisprevents these small memory systems from using reroot, which is requiredfor them to install firmware updates.Submitted by: Hiroki Mori <[email protected]>Reviewed by: mizhkaDifferential Revision: https://reviews.freebsd.org/D13583
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
MFp4: - Remove unnecessary NULL checks after M_WAITOK allocations. - Use VOP_ACCESS instead of hand-rolled suser_cred() calls. [1] - Use malloc(9) KPI to allocate memory for string. The op
MFp4: - Remove unnecessary NULL checks after M_WAITOK allocations. - Use VOP_ACCESS instead of hand-rolled suser_cred() calls. [1] - Use malloc(9) KPI to allocate memory for string. The optimization taken from NetBSD is not valid for FreeBSD because our malloc(9) already act that way. [2]Requested by: rwatson [1]Submitted by: Howard Su [2]Approved by: re (tmpfs blanket)
MFp4: Add tmpfs, an efficient memory file system.Please note that, this is currently considered as anexperimental feature so there could be some roughedges. Consult http://wiki.freebsd.org/TMPFS
MFp4: Add tmpfs, an efficient memory file system.Please note that, this is currently considered as anexperimental feature so there could be some roughedges. Consult http://wiki.freebsd.org/TMPFS formore information.For now, connect tmpfs to build on i386 and amd64architectures only. Please let us know if you havesuccess with other platforms.This work was developed by Julio M. Merino Vidalfor NetBSD as a SoC project; Rohit Jalan ported itfrom NetBSD to FreeBSD. Howard Su and Glen Leederare worked on it to continue this effort.Obtained from: NetBSD via p4Submitted by: Howard Su (with some minor changes)Approved by: re (kensmith)