Blame SOURCES/kvm-Use-4-MB-vram-for-cirrus.patch

383d26
From 798456424d4941bed5e19e4ee3c712c7bc3766dd Mon Sep 17 00:00:00 2001
383d26
From: Gerd Hoffmann <kraxel@redhat.com>
383d26
Date: Wed, 13 Jun 2018 10:40:26 +0200
383d26
Subject: [PATCH 4/9] Use 4 MB vram for cirrus.
383d26
383d26
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
383d26
Message-id: <20180613104026.4395-3-kraxel@redhat.com>
383d26
Patchwork-id: 80652
383d26
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 2/2] Use 4 MB vram for cirrus.
383d26
Bugzilla: 1542080
383d26
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
383d26
RH-Acked-by: Daniel P. Berrange <berrange@redhat.com>
383d26
383d26
Follow upstream, which switched from 8 MB to 4 MB in release 2.9,
383d26
see commit 73c148130b58709f0f2abfedbae92681d87eb404.
383d26
383d26
RHEL traditionally defaults to 16 MB video memory, so we had a patch
383d26
changing 8 MB -> 16 MB downstream.  The 2.9 rebase kept that patch, now
383d26
changing 4 MB -> 16 MB.
383d26
383d26
This patch effectively reverts the downstream change and adds a compat
383d26
property so the video memory will stay at 16 MB for 7.5 and older
383d26
machine types.
383d26
383d26
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 hw/display/cirrus_vga.c | 2 +-
383d26
 include/hw/compat.h     | 4 ++++
383d26
 2 files changed, 5 insertions(+), 1 deletion(-)
383d26
383d26
diff --git a/hw/display/cirrus_vga.c b/hw/display/cirrus_vga.c
383d26
index feacb45..014268a 100644
383d26
--- a/hw/display/cirrus_vga.c
383d26
+++ b/hw/display/cirrus_vga.c
383d26
@@ -3133,7 +3133,7 @@ static void pci_cirrus_vga_realize(PCIDevice *dev, Error **errp)
383d26
 
383d26
 static Property pci_vga_cirrus_properties[] = {
383d26
     DEFINE_PROP_UINT32("vgamem_mb", struct PCICirrusVGAState,
383d26
-                       cirrus_vga.vga.vram_size_mb, 16),
383d26
+                       cirrus_vga.vga.vram_size_mb, 4),
383d26
     DEFINE_PROP_BOOL("blitter", struct PCICirrusVGAState,
383d26
                      cirrus_vga.enable_blitter, true),
383d26
     DEFINE_PROP_END_OF_LIST(),
383d26
diff --git a/include/hw/compat.h b/include/hw/compat.h
383d26
index 666eed9..9e659e9 100644
383d26
--- a/include/hw/compat.h
383d26
+++ b/include/hw/compat.h
383d26
@@ -476,6 +476,10 @@
383d26
         .driver   = "virtio-tablet-device",\
383d26
         .property = "wheel-axis",\
383d26
         .value    = "false",\
383d26
+    },{ /* HW_COMPAT_RHEL7_5 */ \
383d26
+        .driver   = "cirrus-vga",\
383d26
+        .property = "vgamem_mb",\
383d26
+        .value    = "16",\
383d26
     },
383d26
 
383d26
 #endif /* HW_COMPAT_H */
383d26
-- 
383d26
1.8.3.1
383d26