mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-01 17:35:19 +00:00
arch: x86_64: Fix EBDA adddress
This was set to the MP table address rather than the start of the EBDA. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
55f01b2180
commit
26a210a83a
@ -46,7 +46,7 @@ impl From<Error> for super::Error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Where BIOS/VGA magic would live on a real PC.
|
// Where BIOS/VGA magic would live on a real PC.
|
||||||
const EBDA_START: GuestAddress = GuestAddress(0x9fc00);
|
const EBDA_START: GuestAddress = GuestAddress(0xa0000);
|
||||||
const FIRST_ADDR_PAST_32BITS: GuestAddress = GuestAddress(1 << 32);
|
const FIRST_ADDR_PAST_32BITS: GuestAddress = GuestAddress(1 << 32);
|
||||||
|
|
||||||
// Our 32-bit memory gap starts at 3G.
|
// Our 32-bit memory gap starts at 3G.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user