thebeanogamer / rpms / qemu-kvm

Forked from rpms/qemu-kvm 5 months ago
Clone

Blame SOURCES/kvm-s390x-pci-use-the-passthrough-measurement-update-int.patch

62547e
From c251a7a16e776072b9c7bbc4e61cfa4f52599b0a Mon Sep 17 00:00:00 2001
62547e
From: Matthew Rosato <mjrosato@linux.ibm.com>
62547e
Date: Fri, 3 Dec 2021 09:27:05 -0500
62547e
Subject: [PATCH 03/42] s390x/pci: use the passthrough measurement update
62547e
 interval
62547e
MIME-Version: 1.0
62547e
Content-Type: text/plain; charset=UTF-8
62547e
Content-Transfer-Encoding: 8bit
62547e
62547e
RH-Author: Cédric Le Goater <clg@redhat.com>
62547e
RH-MergeRequest: 226: s390: Enhanced Interpretation for PCI Functions and Secure Execution guest dump
62547e
RH-Bugzilla: 1664378 2043909
62547e
RH-Acked-by: Thomas Huth <thuth@redhat.com>
62547e
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
62547e
RH-Acked-by: Jon Maloy <jmaloy@redhat.com>
62547e
RH-Commit: [3/41] bc31ea731fe64e51522f1202e65528311397b919
62547e
62547e
We may have gotten a measurement update interval from the underlying host
62547e
via vfio -- Use it to set the interval via which we update the function
62547e
measurement block.
62547e
62547e
Fixes: 28dc86a072 ("s390x/pci: use a PCI Group structure")
62547e
Signed-off-by: Matthew Rosato <mjrosato@linux.ibm.com>
62547e
Reviewed-by: Eric Farman <farman@linux.ibm.com>
62547e
Reviewed-by: Pierre Morel <pmorel@linux.ibm.com>
62547e
Message-Id: <20211203142706.427279-4-mjrosato@linux.ibm.com>
62547e
Signed-off-by: Thomas Huth <thuth@redhat.com>
62547e
(cherry picked from commit cb6d6a3e6aa1226b67fd218953dcb3866c3a6845)
62547e
Signed-off-by: Cédric Le Goater <clg@redhat.com>
62547e
---
62547e
 hw/s390x/s390-pci-inst.c | 5 +++--
62547e
 1 file changed, 3 insertions(+), 2 deletions(-)
62547e
62547e
diff --git a/hw/s390x/s390-pci-inst.c b/hw/s390x/s390-pci-inst.c
62547e
index 11b7f6bfa1..07bab85ce5 100644
62547e
--- a/hw/s390x/s390-pci-inst.c
62547e
+++ b/hw/s390x/s390-pci-inst.c
62547e
@@ -1046,7 +1046,7 @@ static void fmb_update(void *opaque)
62547e
                       sizeof(pbdev->fmb.last_update))) {
62547e
         return;
62547e
     }
62547e
-    timer_mod(pbdev->fmb_timer, t + DEFAULT_MUI);
62547e
+    timer_mod(pbdev->fmb_timer, t + pbdev->pci_group->zpci_group.mui);
62547e
 }
62547e
 
62547e
 int mpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
62547e
@@ -1204,7 +1204,8 @@ int mpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
62547e
         }
62547e
         pbdev->fmb_addr = fmb_addr;
62547e
         timer_mod(pbdev->fmb_timer,
62547e
-                  qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + DEFAULT_MUI);
62547e
+                  qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
62547e
+                                    pbdev->pci_group->zpci_group.mui);
62547e
         break;
62547e
     }
62547e
     default:
62547e
-- 
62547e
2.37.3
62547e