summaryrefslogtreecommitdiff
path: root/sysutils/xenkernel415/patches/patch-xen_drivers_passthrough_x86_iommu.c
blob: 7eda9aa5bb65b73083f6a1d791a9f9bec979f639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-xen_drivers_passthrough_x86_iommu.c,v 1.1 2021/04/18 12:31:26 bouyer Exp $

Silent noisy warning

--- xen/drivers/passthrough/x86/iommu.c.orig	2020-12-08 15:28:32.000000000 +0100
+++ xen/drivers/passthrough/x86/iommu.c	2020-12-08 17:32:05.407356434 +0100
@@ -248,7 +248,7 @@
             rc = iommu_map(d, _dfn(pfn), _mfn(pfn), 1ul << PAGE_ORDER_4K,
                            IOMMUF_readable | IOMMUF_writable, &flush_flags);
 
-        if ( rc )
+        if ( rc && (!paging_mode_translate(d) || rc != -16) )
             printk(XENLOG_WARNING "%pd: identity %smapping of %lx failed: %d\n",
                    d, !paging_mode_translate(d) ? "IOMMU " : "", pfn, rc);