Comment 20 for bug 1835546

Revision history for this message
bugproxy (bugproxy) wrote : Comment bridged from LTC Bugzilla

------- Comment From <email address hidden> 2020-03-23 05:29 EDT-------
There was an issue found, building on x86 32-bit, which required a fix. The backport branch has been updated:
https://github.com/borntraeger/qemu/commits/pv42

Can you please update the package to sync with the upstream state of affairs?

NB: You can verify the delta by diffing
https://github.com/borntraeger/qemu/commits/pv42_v11 (used for your backport)
and
https://github.com/borntraeger/qemu/commits/pv42_v12

which is

index 1d04cd5..c343cfb 100644
--- a/hw/s390x/ipl.c
+++ b/hw/s390x/ipl.c
@@ -656,7 +656,7 @@ int s390_ipl_prepare_pv_header(void)
cpu_physical_memory_read(ipib_pv->pv_header_addr, hdr,
ipib_pv->pv_header_len);
- rc = s390_pv_set_sec_parms((uint64_t)hdr,
+ rc = s390_pv_set_sec_parms((uintptr_t)hdr,
ipib_pv->pv_header_len);
g_free(hdr);
return rc;