@@ -610,7 +610,7 @@ int __init construct_dom0(struct boot_domain *bd)
process_pending_softirqs();
if ( is_hvm_domain(d) )
- rc = dom0_construct_pvh(bd->d, bd->kernel, bd->ramdisk, bd->cmdline);
+ rc = dom0_construct_pvh(bd);
else if ( is_pv_domain(d) )
rc = dom0_construct_pv(bd);
else
@@ -1299,10 +1299,9 @@ static void __hwdom_init pvh_setup_mmcfg(struct domain *d)
}
}
-int __init dom0_construct_pvh(
- struct domain *d, const struct boot_module *image,
- struct boot_module *initrd, const char *cmdline)
+int __init dom0_construct_pvh(const struct boot_domain *bd)
{
+ struct domain *d = bd->d;
paddr_t entry, start_info;
int rc;
@@ -1345,7 +1344,8 @@ int __init dom0_construct_pvh(
return rc;
}
- rc = pvh_load_kernel(d, image, initrd, bootstrap_map_bm(image), cmdline,
+ rc = pvh_load_kernel(d, bd->kernel, bd->ramdisk,
+ bootstrap_map_bm(bd->kernel), bd->cmdline,
&entry, &start_info);
if ( rc )
{
@@ -16,9 +16,7 @@ int dom0_setup_permissions(struct domain *d);
int dom0_construct_pv(struct boot_domain *bd);
-int dom0_construct_pvh(
- struct domain *d, const struct boot_module *image,
- struct boot_module *initrd, const char *cmdline);
+int dom0_construct_pvh(const struct boot_domain *bd);
unsigned long dom0_paging_pages(const struct domain *d,
unsigned long nr_pages);
With construct_dom0 consuming struct boot_domain, continue passing the structure down to dom0_construct_pvh. Signed-off-by: Daniel P. Smith <dpsmith@apertussolutions.com> --- Changes since v5: - revert back to using *d as local reference for struct domain --- xen/arch/x86/dom0_build.c | 2 +- xen/arch/x86/hvm/dom0_build.c | 8 ++++---- xen/arch/x86/include/asm/dom0_build.h | 4 +--- 3 files changed, 6 insertions(+), 8 deletions(-)