]> xenbits.xensource.com Git - people/liuw/xen.git/commitdiff
x86/IRQ: make 'i' debug output more tabular again
authorJan Beulich <jbeulich@suse.com>
Tue, 10 Sep 2019 14:34:21 +0000 (16:34 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 10 Sep 2019 14:34:21 +0000 (16:34 +0200)
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 <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/irq.c

index 0ee33464d2d72fba55b4f62fe449559b48db1459..d96cf4354248970aa5609a17fded7ce6be0bcf14 100644 (file)
@@ -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);