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

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