On 28.07.2025 20:34, dm...@proton.me wrote: > From: Denis Mukhin <dmuk...@ford.com> > > Use %pd for domain identification in error/panic messages in create_dom0().
Except that ... > --- a/xen/arch/arm/domain_build.c > +++ b/xen/arch/arm/domain_build.c > @@ -2081,17 +2081,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)); ... here you don't (and can't). To avoid people wondering when they later come across a commit, I think descriptions would better be accurate. It'll be Arm maintainers to judge whether they let you get away with this; as it covers x86 only anyway: Acked-by: Jan Beulich <jbeul...@suse.com> Jan