qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/7] First batch of s390x changes for 4.2
@ 2019-08-22 13:58 Cornelia Huck
  2019-08-22 13:58 ` [Qemu-devel] [PATCH for-4.1?] compat: disable edid on virtio-gpu base device Cornelia Huck
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Cornelia Huck @ 2019-08-22 13:58 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-s390x, Cornelia Huck, qemu-devel

The following changes since commit f3b8f18ebf344ab359e8f79f6ed777e740dae77c:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2019-08-21' into staging (2019-08-22 10:31:21 +0100)

are available in the Git repository at:

  https://github.com/cohuck/qemu tags/s390x-20190822

for you to fetch changes up to 065fe80fe03ff0f36a0cbebbd2d4b3c05110d96d:

  s390x/mmu: Factor out storage key handling (2019-08-22 14:53:49 +0200)

----------------------------------------------------------------
s390x updates:
- fix a bug in tcg vector handling
- improved skey handling

----------------------------------------------------------------

David Hildenbrand (7):
  s390x/tcg: Fix VERIM with 32/64 bit elements
  s390x/mmu: Trace the right value if setting/getting the storage key
    fails
  s390x/mmu: ASC selection in s390_cpu_get_phys_page_debug()
  s390x/tcg: Rework MMU selection for instruction fetches
  s390x/tcg: Flush the TLB of all CPUs on SSKE and RRBE
  s390x/mmu: Better storage key reference and change bit handling
  s390x/mmu: Factor out storage key handling

 target/s390x/cpu.h              |   7 ++
 target/s390x/helper.c           |   5 ++
 target/s390x/mem_helper.c       |  10 +++
 target/s390x/mmu_helper.c       | 135 ++++++++++++++++++++------------
 target/s390x/translate_vx.inc.c |   2 +-
 5 files changed, 108 insertions(+), 51 deletions(-)

-- 
2.20.1



^ permalink raw reply	[flat|nested] 16+ messages in thread
* [Qemu-devel] [PATCH for-4.1?] compat: disable edid on virtio-gpu base device
@ 2019-08-06 11:58 Cornelia Huck
  2019-08-06 13:39 ` Gerd Hoffmann
  0 siblings, 1 reply; 16+ messages in thread
From: Cornelia Huck @ 2019-08-06 11:58 UTC (permalink / raw)
  To: Gerd Hoffmann
  Cc: Peter Maydell, Eduardo Habkost, Michael S . Tsirkin,
	Cornelia Huck, qemu-devel

'edid' is a property of the virtio-gpu base device, so turning
it off on virtio-gpu-pci is not enough (it misses -ccw). Turn
it off on the base device instead.

Fixes: 0a71966253c8 ("edid: flip the default to enabled")
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---

Only just noticed this... should we still shove this into 4.1?
Or do we need a compat 4.1.1 dance for this?

---
 hw/core/machine.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/core/machine.c b/hw/core/machine.c
index 28a475ad97a3..32d1ca9abc5a 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -32,7 +32,7 @@ GlobalProperty hw_compat_4_0[] = {
     { "secondary-vga",  "edid", "false" },
     { "bochs-display",  "edid", "false" },
     { "virtio-vga",     "edid", "false" },
-    { "virtio-gpu-pci", "edid", "false" },
+    { "virtio-gpu",     "edid", "false" },
     { "virtio-device", "use-started", "false" },
     { "virtio-balloon-device", "qemu-4-0-config-size", "true" },
     { "pl031", "migrate-tick-offset", "false" },
-- 
2.20.1



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

end of thread, other threads:[~2019-08-23 15:14 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-22 13:58 [Qemu-devel] [PULL 0/7] First batch of s390x changes for 4.2 Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PATCH for-4.1?] compat: disable edid on virtio-gpu base device Cornelia Huck
2019-08-22 14:03   ` Cornelia Huck
2019-08-22 14:45   ` no-reply
2019-08-22 13:58 ` [Qemu-devel] [PULL 1/7] s390x/tcg: Fix VERIM with 32/64 bit elements Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PULL 2/7] s390x/mmu: Trace the right value if setting/getting the storage key fails Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PULL 3/7] s390x/mmu: ASC selection in s390_cpu_get_phys_page_debug() Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PULL 4/7] s390x/tcg: Rework MMU selection for instruction fetches Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PULL 5/7] s390x/tcg: Flush the TLB of all CPUs on SSKE and RRBE Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PULL 6/7] s390x/mmu: Better storage key reference and change bit handling Cornelia Huck
2019-08-22 13:58 ` [Qemu-devel] [PULL 7/7] s390x/mmu: Factor out storage key handling Cornelia Huck
2019-08-23 15:11 ` [Qemu-devel] [PULL 0/7] First batch of s390x changes for 4.2 Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-08-06 11:58 [Qemu-devel] [PATCH for-4.1?] compat: disable edid on virtio-gpu base device Cornelia Huck
2019-08-06 13:39 ` Gerd Hoffmann
2019-08-06 13:42   ` Peter Maydell
2019-08-06 15:40     ` Peter Maydell

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).