[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v10 2/3] xen/domain: update create_dom0() messages
On Mon Jun 23, 2025 at 8:28 PM CEST, dmkhn wrote: > From: Denis Mukhin <dmukhin@xxxxxxxx> > > Use %pd for domain identification in error/panic messages in create_dom0(). > > No functional change. > > Signed-off-by: Denis Mukhin <dmukhin@xxxxxxxx> nit below. But with or without that change: Reviewed-by: Alejandro Vallejo <alejandro.garciavallejo@xxxxxxx> > --- > Changes since v9: > - new patch > --- > xen/arch/arm/domain_build.c | 8 ++++---- > xen/arch/x86/setup.c | 4 ++-- > 2 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c > index 9fa5143eb98c..b59b56636920 100644 > --- a/xen/arch/arm/domain_build.c > +++ b/xen/arch/arm/domain_build.c > @@ -2080,17 +2080,17 @@ void __init create_dom0(void) > > dom0 = domain_create(domid, &dom0_cfg, flags); > if ( IS_ERR(dom0) ) > - panic("Error creating domain 0 (rc = %ld)\n", PTR_ERR(dom0)); > + panic("Error creating d%d (rc = %ld)\n", domid, PTR_ERR(dom0)); > > if ( llc_coloring_enabled && (rc = dom0_set_llc_colors(dom0)) ) > - panic("Error initializing LLC coloring for domain 0 (rc = %d)\n", > rc); > + panic("Error initializing LLC coloring for %pd (rc = %d)\n", dom0, > rc); > > if ( alloc_dom0_vcpu0(dom0) == NULL ) > - panic("Error creating domain 0 vcpu0\n"); > + panic("Error creating %pdv0\n", dom0); > > rc = construct_dom0(dom0); > if ( rc ) > - panic("Could not set up DOM0 guest OS (rc = %d)\n", rc); > + panic("Could not set up guest OS for %pd (rc = %d)\n", dom0, rc); nit: s/guest OS for %pd/%pd guest OS/ > > set_xs_domain(dom0); > } > diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c > index 7adb92d78a18..28bcfd1861d4 100644 > --- a/xen/arch/x86/setup.c > +++ b/xen/arch/x86/setup.c > @@ -1080,7 +1080,7 @@ static struct domain *__init create_dom0(struct > boot_info *bi) > > if ( (strlen(acpi_param) == 0) && acpi_disabled ) > { > - printk("ACPI is disabled, notifying Domain 0 (acpi=off)\n"); > + printk("ACPI is disabled, notifying %pd (acpi=off)\n", d); > safe_strcpy(acpi_param, "off"); > } > > @@ -1095,7 +1095,7 @@ static struct domain *__init create_dom0(struct > boot_info *bi) > > bd->d = d; > if ( construct_dom0(bd) != 0 ) > - panic("Could not construct domain 0\n"); > + panic("Could not construct %pd\n", d); > > bd->cmdline = NULL; > xfree(cmdline);
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |