From fba818d400ce970fb05441fcc7789339382d1809 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Tue, 10 Sep 2019 16:34:21 +0200 Subject: [PATCH] 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 --- xen/arch/x86/irq.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.5