Fix bhyve SMBIOS type 19 handling to avoid misreporting total RAM amount

This fixes the amount of memory displayed in the EDK2 UiApp to be the same
as passed on the bhyve command line. Otherwise, 8GB is displayed as 4GB,
32GB as 28GB etc.

Reviewed by:	jhb, kib, rgrimes
Differential Revision:	https://reviews.freebsd.org/D27348
This commit is contained in:
Rebecca Cran 2020-11-27 08:00:32 +00:00
parent 5285d5e8e1
commit 866db2fef0

View File

@ -758,7 +758,7 @@ smbios_type19_initializer(struct smbios_structure *template_entry,
type19 = (struct smbios_table_type19 *)curaddr;
type19->arrayhand = type16_handle;
type19->xsaddr = 4*GB;
type19->xeaddr = guest_himem;
type19->xeaddr = type19->xsaddr + guest_himem;
}
return (0);