Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F147505099
D35628.id107535.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D35628.id107535.diff
View Options
Index: sys/x86/xen/pv.c
===================================================================
--- sys/x86/xen/pv.c
+++ sys/x86/xen/pv.c
@@ -68,6 +68,7 @@
#include <machine/intr_machdep.h>
#include <machine/md_var.h>
#include <machine/metadata.h>
+#include <machine/cpu.h>
#include <xen/xen-os.h>
#include <xen/hvm.h>
@@ -143,10 +144,36 @@
}
/*
- * The hvm_start_into structure is always appended after loading
- * the kernel and modules.
+ * Select the higher address to use as physfree: either after
+ * start_info, after the kernel, after the memory map or after any of
+ * the modules. We assume enough memory to be available after the
+ * selected address for the needs of very early memory allocations.
*/
- physfree = roundup2(start_info_paddr + PAGE_SIZE, PAGE_SIZE);
+ physfree = roundup2(start_info_paddr + sizeof(struct hvm_start_info),
+ PAGE_SIZE);
+ physfree = MAX(roundup2((vm_paddr_t)_end - KERNBASE, PAGE_SIZE),
+ physfree);
+
+ if (start_info->memmap_paddr != 0)
+ physfree = MAX(roundup2(start_info->memmap_paddr +
+ start_info->memmap_entries *
+ sizeof(struct hvm_memmap_table_entry), PAGE_SIZE),
+ physfree);
+
+ if (start_info->modlist_paddr != 0) {
+ unsigned int i;
+
+ if (start_info->nr_modules == 0) {
+ xc_printf(
+ "ERROR: modlist_paddr != 0 but nr_modules == 0\n");
+ HYPERVISOR_shutdown(SHUTDOWN_crash);
+ }
+ mod = (struct hvm_modlist_entry *)
+ (start_info->modlist_paddr + KERNBASE);
+ for (i = 0; i < start_info->nr_modules; i++)
+ physfree = MAX(roundup2(mod[i].paddr + mod[i].size,
+ PAGE_SIZE), physfree);
+ }
xatp.domid = DOMID_SELF;
xatp.idx = 0;
@@ -168,25 +195,6 @@
bzero_early(kenv, PAGE_SIZE);
init_static_kenv(kenv, PAGE_SIZE);
- if (start_info->modlist_paddr != 0) {
- if (start_info->modlist_paddr >= physfree) {
- xc_printf(
- "ERROR: unexpected module list memory address\n");
- HYPERVISOR_shutdown(SHUTDOWN_crash);
- }
- if (start_info->nr_modules == 0) {
- xc_printf(
- "ERROR: modlist_paddr != 0 but nr_modules == 0\n");
- HYPERVISOR_shutdown(SHUTDOWN_crash);
- }
- mod = (struct hvm_modlist_entry *)
- (start_info->modlist_paddr + KERNBASE);
- if (mod[0].paddr >= physfree) {
- xc_printf("ERROR: unexpected module memory address\n");
- HYPERVISOR_shutdown(SHUTDOWN_crash);
- }
- }
-
/* Set the hooks for early functions that diverge from bare metal */
init_ops = xen_pvh_init_ops;
hvm_start_flags = start_info->flags;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 12, 12:19 PM (2 h, 39 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
29581898
Default Alt Text
D35628.id107535.diff (2 KB)
Attached To
Mode
D35628: x86/xen: stop assuming kernel memory loading order in PVH
Attached
Detach File
Event Timeline
Log In to Comment