|
|
218e99 |
From df701ea37b50b14a18185708189d85d332b29319 Mon Sep 17 00:00:00 2001
|
|
|
218e99 |
From: Andrea Arcangeli <aarcange@redhat.com>
|
|
|
218e99 |
Date: Tue, 8 Oct 2013 17:05:45 +0200
|
|
|
218e99 |
Subject: [PATCH 1/3] seabios paravirt: allow more than 1TB in x86 guest
|
|
|
218e99 |
|
|
|
218e99 |
RH-Author: Andrea Arcangeli <aarcange@redhat.com>
|
|
|
218e99 |
Message-id: <1381251945-13402-2-git-send-email-aarcange@redhat.com>
|
|
|
218e99 |
Patchwork-id: 54784
|
|
|
218e99 |
O-Subject: [RHEL-7.0 qemu-kvm PATCH] seabios paravirt: allow more than 1TB in x86 guest
|
|
|
218e99 |
Bugzilla: 989677
|
|
|
218e99 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
218e99 |
RH-Acked-by: Gleb Natapov <gleb@redhat.com>
|
|
|
218e99 |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
218e99 |
|
|
|
218e99 |
This patch should be applied to the qemu-kvm rpm package at the same
|
|
|
218e99 |
time of the other one for seabios, so qemu will forward the ram_size
|
|
|
218e99 |
bits over 40 to seabios without losing them.
|
|
|
218e99 |
|
|
|
218e99 |
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
|
|
|
218e99 |
---
|
|
|
218e99 |
hw/i386/pc.c | 1 +
|
|
|
218e99 |
1 file changed, 1 insertion(+)
|
|
|
218e99 |
|
|
|
218e99 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
218e99 |
---
|
|
|
218e99 |
hw/i386/pc.c | 1 +
|
|
|
218e99 |
1 files changed, 1 insertions(+), 0 deletions(-)
|
|
|
218e99 |
|
|
|
218e99 |
diff --git a/hw/i386/pc.c b/hw/i386/pc.c
|
|
|
218e99 |
index 3c77040..d3acbbb 100644
|
|
|
218e99 |
--- a/hw/i386/pc.c
|
|
|
218e99 |
+++ b/hw/i386/pc.c
|
|
|
218e99 |
@@ -399,6 +399,7 @@ void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
|
|
|
218e99 |
rtc_set_memory(s, 0x5b, val);
|
|
|
218e99 |
rtc_set_memory(s, 0x5c, val >> 8);
|
|
|
218e99 |
rtc_set_memory(s, 0x5d, val >> 16);
|
|
|
218e99 |
+ rtc_set_memory(s, 0x5e, val >> 24);
|
|
|
218e99 |
|
|
|
218e99 |
/* set the number of CPU */
|
|
|
218e99 |
rtc_set_memory(s, 0x5f, smp_cpus - 1);
|
|
|
218e99 |
--
|
|
|
218e99 |
1.7.1
|
|
|
218e99 |
|