summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkj <markj@FreeBSD.org>2018-02-25 00:32:42 +0000
committermarkj <markj@FreeBSD.org>2018-02-25 00:32:42 +0000
commitcdf8c6144ce326759989ebcbc0d9b5195bd4f811 (patch)
treefbf7f7bc9586aa20ffca329acd0a37e25e5fe147
parent4370749fa2a3cdb952a8206a512e9bcc0ac42d9b (diff)
downloadFreeBSD-src-cdf8c6144ce326759989ebcbc0d9b5195bd4f811.zip
FreeBSD-src-cdf8c6144ce326759989ebcbc0d9b5195bd4f811.tar.gz
MFC r329521:
Don't include DMAR map entry zone items in kernel dumps.
-rw-r--r--sys/x86/iommu/intel_gas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/iommu/intel_gas.c b/sys/x86/iommu/intel_gas.c
index d4aca10..8cebe37 100644
--- a/sys/x86/iommu/intel_gas.c
+++ b/sys/x86/iommu/intel_gas.c
@@ -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);
OpenPOWER on IntegriCloud