]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 May 2021 05:50:14 +0000 (07:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 May 2021 05:50:14 +0000 (07:50 +0200)
added patches:
vfio-depend-on-mmu.patch

queue-5.10/series
queue-5.10/vfio-depend-on-mmu.patch [new file with mode: 0644]

index 6b2cd8d647f0f4d7d8cacc532c53e53d6e19a659..755270374b8ddab2f72c41057885849102209d36 100644 (file)
@@ -25,3 +25,4 @@ usb-add-lpm-quirk-for-lenovo-thinkpad-usb-c-dock-gen2-ethernet.patch
 usb-add-reset-resume-quirk-for-wd19-s-realtek-hub.patch
 platform-x86-thinkpad_acpi-correct-thermal-sensor-allocation.patch
 perf-core-fix-unconditional-security_locked_down-call.patch
+vfio-depend-on-mmu.patch
diff --git a/queue-5.10/vfio-depend-on-mmu.patch b/queue-5.10/vfio-depend-on-mmu.patch
new file mode 100644 (file)
index 0000000..40a0587
--- /dev/null
@@ -0,0 +1,36 @@
+From b2b12db53507bc97d96f6b7cb279e831e5eafb00 Mon Sep 17 00:00:00 2001
+From: Jason Gunthorpe <jgg@nvidia.com>
+Date: Thu, 4 Mar 2021 21:30:03 -0400
+Subject: vfio: Depend on MMU
+
+From: Jason Gunthorpe <jgg@nvidia.com>
+
+commit b2b12db53507bc97d96f6b7cb279e831e5eafb00 upstream.
+
+VFIO_IOMMU_TYPE1 does not compile with !MMU:
+
+../drivers/vfio/vfio_iommu_type1.c: In function 'follow_fault_pfn':
+../drivers/vfio/vfio_iommu_type1.c:536:22: error: implicit declaration of function 'pte_write'; did you mean 'vfs_write'? [-Werror=implicit-function-declaration]
+
+So require it.
+
+Suggested-by: Cornelia Huck <cohuck@redhat.com>
+Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
+Message-Id: <0-v1-02cb5500df6e+78-vfio_no_mmu_jgg@nvidia.com>
+Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/vfio/Kconfig |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/vfio/Kconfig
++++ b/drivers/vfio/Kconfig
+@@ -22,7 +22,7 @@ config VFIO_VIRQFD
+ menuconfig VFIO
+       tristate "VFIO Non-Privileged userspace driver framework"
+       select IOMMU_API
+-      select VFIO_IOMMU_TYPE1 if (X86 || S390 || ARM || ARM64)
++      select VFIO_IOMMU_TYPE1 if MMU && (X86 || S390 || ARM || ARM64)
+       help
+         VFIO provides a framework for secure userspace device drivers.
+         See Documentation/driver-api/vfio.rst for more details.