qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2] vhost: correctly turn on VIRTIO_F_IOMMU_PLATFORM
@ 2020-02-26  9:43 Jason Wang
  2020-02-26  9:53 ` Michael S. Tsirkin
  2020-02-26 13:28 ` Halil Pasic
  0 siblings, 2 replies; 30+ messages in thread
From: Jason Wang @ 2020-02-26  9:43 UTC (permalink / raw)
  To: mst, qemu-devel; +Cc: pasic, Jason Wang, qemu-stable

We turn on device IOTLB via VIRTIO_F_IOMMU_PLATFORM unconditionally on
platform without IOMMU support. This can lead unnecessary IOTLB
transactions which will damage the performance.

Fixing this by check whether the device is backed by IOMMU and disable
device IOTLB.

Reported-by: Halil Pasic <pasic@linux.ibm.com>
Fixes: c471ad0e9bd46 ("vhost_net: device IOTLB support")
Cc: qemu-stable@nongnu.org
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
Changes from V1:
- do not check acked_features
- reuse vhost_dev_has_iommu()
---
 hw/virtio/vhost.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c
index 9edfadc81d..9182a00495 100644
--- a/hw/virtio/vhost.c
+++ b/hw/virtio/vhost.c
@@ -290,7 +290,14 @@ static int vhost_dev_has_iommu(struct vhost_dev *dev)
 {
     VirtIODevice *vdev = dev->vdev;
 
-    return virtio_host_has_feature(vdev, VIRTIO_F_IOMMU_PLATFORM);
+    /*
+     * For vhost, VIRTIO_F_IOMMU_PLATFORM means the backend support
+     * incremental memory mapping API via IOTLB API. For platform that
+     * does not have IOMMU, there's no need to enable this feature
+     * which may cause unnecessary IOTLB miss/update trnasactions.
+     */
+    return vdev->dma_as != &address_space_memory &&
+           virtio_host_has_feature(vdev, VIRTIO_F_IOMMU_PLATFORM);
 }
 
 static void *vhost_memory_map(struct vhost_dev *dev, hwaddr addr,
@@ -765,6 +772,9 @@ static int vhost_dev_set_features(struct vhost_dev *dev,
     if (enable_log) {
         features |= 0x1ULL << VHOST_F_LOG_ALL;
     }
+    if (!vhost_dev_has_iommu(dev)) {
+        features &= ~(0x1ULL << VIRTIO_F_IOMMU_PLATFORM);
+    }
     r = dev->vhost_ops->vhost_set_features(dev, features);
     if (r < 0) {
         VHOST_OPS_DEBUG("vhost_set_features failed");
-- 
2.19.1



^ permalink raw reply related	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2020-03-18  2:07 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-26  9:43 [PATCH V2] vhost: correctly turn on VIRTIO_F_IOMMU_PLATFORM Jason Wang
2020-02-26  9:53 ` Michael S. Tsirkin
2020-02-26 10:17   ` Jason Wang
2020-02-26 11:44     ` Michael S. Tsirkin
2020-02-26 12:50       ` Halil Pasic
2020-02-26 12:55   ` Halil Pasic
2020-02-26 13:45     ` Michael S. Tsirkin
2020-02-26 13:28 ` Halil Pasic
2020-02-26 13:37   ` Michael S. Tsirkin
2020-02-26 15:36     ` Halil Pasic
2020-02-26 16:52       ` Michael S. Tsirkin
2020-02-27 13:02         ` Halil Pasic
2020-02-27 15:47           ` Michael S. Tsirkin
2020-03-03 14:44             ` Halil Pasic
2020-03-13 12:44             ` Halil Pasic
2020-03-13 15:29               ` Michael S. Tsirkin
2020-03-13 16:31                 ` Peter Xu
2020-03-16 16:57                   ` Halil Pasic
2020-03-16 17:31                     ` Peter Xu
2020-03-16 17:19                   ` Michael S. Tsirkin
2020-03-16 18:14                     ` Peter Xu
2020-03-17  3:04                       ` Jason Wang
2020-03-17 14:13                         ` Peter Xu
2020-03-18  2:06                           ` Jason Wang
2020-03-17  6:28                       ` Michael S. Tsirkin
2020-03-17 14:39                         ` Peter Xu
2020-03-17 14:55                           ` Michael S. Tsirkin
2020-03-13 20:27               ` Brijesh Singh
2020-03-14 18:22                 ` Michael S. Tsirkin
2020-02-27 20:36           ` Tom Lendacky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).