Switch the PV message to match the wording of the PVH side, use the same number of ***'s, explicitly identify PV vs PVH, and set the log level at INFO.
Signed-off-by: Andrew Cooper <[email protected]> --- CC: Jan Beulich <[email protected]> CC: Wei Liu <[email protected]> CC: Roger Pau Monné <[email protected]> --- xen/arch/x86/hvm/dom0_build.c | 2 +- xen/arch/x86/pv/dom0_build.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/hvm/dom0_build.c b/xen/arch/x86/hvm/dom0_build.c index 962dc14..bf7baa8 100644 --- a/xen/arch/x86/hvm/dom0_build.c +++ b/xen/arch/x86/hvm/dom0_build.c @@ -1064,7 +1064,7 @@ int __init dom0_construct_pvh(struct domain *d, const module_t *image, paddr_t entry, start_info; int rc; - printk("** Building a PVH Dom0 **\n"); + printk(XENLOG_INFO "*** Building a PVH Dom0 ***\n"); iommu_hwdom_init(d); diff --git a/xen/arch/x86/pv/dom0_build.c b/xen/arch/x86/pv/dom0_build.c index e7065bf..87b325c 100644 --- a/xen/arch/x86/pv/dom0_build.c +++ b/xen/arch/x86/pv/dom0_build.c @@ -328,7 +328,7 @@ int __init dom0_construct_pv(struct domain *d, /* Machine address of next candidate page-table page. */ paddr_t mpt_alloc; - printk("*** LOADING DOMAIN 0 ***\n"); + printk(XENLOG_INFO "*** Building a PV Dom0 ***\n"); d->max_pages = ~0U; -- 2.1.4 _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
