Since the affinity values are no longer of uniform width, move them further to the right such that as much of the output as possible comes out aligned with one another.
Signed-off-by: Jan Beulich <[email protected]> --- a/xen/arch/x86/irq.c +++ b/xen/arch/x86/irq.c @@ -2397,9 +2397,9 @@ static void dump_irqs(unsigned char key) spin_lock_irqsave(&desc->lock, flags); - printk(" IRQ:%4d aff:{%*pbl}/{%*pbl} vec:%02x %-15s status=%03x ", - irq, CPUMASK_PR(desc->affinity), CPUMASK_PR(desc->arch.cpu_mask), - desc->arch.vector, desc->handler->typename, desc->status); + printk(" IRQ:%4d vec:%02x %-15s status=%03x aff:{%*pbl}/{%*pbl} ", + irq, desc->arch.vector, desc->handler->typename, desc->status, + CPUMASK_PR(desc->affinity), CPUMASK_PR(desc->arch.cpu_mask)); if ( ssid ) printk("Z=%-25s ", ssid); _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
