dirdeps: Add missing dependency filesSome leaf directories were missing Makefile.depend files or neededarchitecture-specific Makefile.depend.* files.(cherry picked from commit e5b786625f7f82a1fa
dirdeps: Add missing dependency filesSome leaf directories were missing Makefile.depend files or neededarchitecture-specific Makefile.depend.* files.(cherry picked from commit e5b786625f7f82a1fa91e41823332459ea5550f9)
show more ...
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
lua: Update to 5.4.4Merge commit '755d9301ca89f02956fd17858b9d4d821ab5c972' from thevendor branch. This updates us from lua 5.4.2 to 5.4.4.In addition, it switches around how we flavor liblua fo
lua: Update to 5.4.4Merge commit '755d9301ca89f02956fd17858b9d4d821ab5c972' from thevendor branch. This updates us from lua 5.4.2 to 5.4.4.In addition, it switches around how we flavor liblua for the boot loaderand flua. This is done to reduce diffs with upstream and make it easierto import new versions (the current method has too many conflicts toresolve by hand): we include luaconf.local.h from luaconf.h (the onlychange to this file is now that #include at the end). We then definewhat we need to: for flua (which does very little) and one for stand(which creates the new FLOAT type out of int64).Sponsored by: Netflix
iommu_gas: initialize start_gap as first nodeIn iommu_gas.c, domain->start_gap points to one of the nodes on eitherside of the first free, unallocated range. In iommu_gas_init_domain,it is initia
iommu_gas: initialize start_gap as first nodeIn iommu_gas.c, domain->start_gap points to one of the nodes on eitherside of the first free, unallocated range. In iommu_gas_init_domain,it is initialized to point to the node after the single freerange. Change it to point to the node before that free range, so that,when 'lowaddr' is within the initial free range, the first allocationsearch for free space below 'lowaddr' does not begin and end at anaddress above 'lowaddr'. This fixes problems on a machine with IntelDMAR enabled.Reported by: jahReviewed by: dougmTested by: jahObtained from: jahFixes: commit db151ca0c343531256b8839f938a4ecbd8b4fd7e iommu_gas: start space search from 1st free spaceMFC after: 1 day