svn commit: r329942 - stable/11/sys/x86/iommu
Mark Johnston
markj at FreeBSD.org
Sun Feb 25 00:32:43 UTC 2018
Author: markj
Date: Sun Feb 25 00:32:42 2018
New Revision: 329942
URL: https://svnweb.freebsd.org/changeset/base/329942
Log:
MFC r329521:
Don't include DMAR map entry zone items in kernel dumps.
Modified:
stable/11/sys/x86/iommu/intel_gas.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/x86/iommu/intel_gas.c
==============================================================================
--- stable/11/sys/x86/iommu/intel_gas.c Sat Feb 24 22:34:56 2018 (r329941)
+++ stable/11/sys/x86/iommu/intel_gas.c Sun Feb 25 00:32:42 2018 (r329942)
@@ -79,7 +79,7 @@ intel_gas_init(void)
dmar_map_entry_zone = uma_zcreate("DMAR_MAP_ENTRY",
sizeof(struct dmar_map_entry), NULL, NULL,
- NULL, NULL, UMA_ALIGN_PTR, 0);
+ NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NODUMP);
}
SYSINIT(intel_gas, SI_SUB_DRIVERS, SI_ORDER_FIRST, intel_gas_init, NULL);
More information about the svn-src-stable
mailing list