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

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