From: Jan Beulich Date: Tue, 10 Sep 2019 14:34:21 +0000 (+0200) Subject: x86/IRQ: make 'i' debug output more tabular again X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fba818d400ce970fb05441fcc7789339382d1809;p=people%2Fliuw%2Fxen.git x86/IRQ: make 'i' debug output more tabular again 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 Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/irq.c b/xen/arch/x86/irq.c index 0ee33464d2..d96cf43542 100644 --- 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);