xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86: dump full IRQ affinity
@ 2010-01-21 14:45 Jan Beulich
  0 siblings, 0 replies; only message in thread
From: Jan Beulich @ 2010-01-21 14:45 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 1767 bytes --]

Signed-off-by: Jan Beulich <jbeulich@novell.com>

--- 2010-01-06.orig/xen/arch/x86/irq.c	2010-01-21 15:19:09.000000000 +0100
+++ 2010-01-06/xen/arch/x86/irq.c	2010-01-21 15:43:02.000000000 +0100
@@ -1570,6 +1570,7 @@ static void dump_irqs(unsigned char key)
     irq_guest_action_t *action;
     struct domain *d;
     unsigned long flags;
+    char cpustr[NR_CPUS/4+NR_CPUS/32+2];
 
     printk("Guest interrupt information:\n");
 
@@ -1584,20 +1585,19 @@ static void dump_irqs(unsigned char key)
 
         spin_lock_irqsave(&desc->lock, flags);
 
+        cpumask_scnprintf(cpustr, sizeof(cpustr), desc->affinity);
+        printk("   IRQ:%4d affinity:%s vec:%02x type=%-15s"
+               " status=%08x ",
+               irq, cpustr, cfg->vector,
+               desc->handler->typename, desc->status);
+
         if ( !(desc->status & IRQ_GUEST) )
-            /* Only show CPU0 - CPU31's affinity info.*/
-            printk("   IRQ:%4d, IRQ affinity:0x%08x, Vec:%3d type=%-15s"
-                    " status=%08x mapped, unbound\n",
-                   irq, *(int*)desc->affinity.bits, cfg->vector,
-                    desc->handler->typename, desc->status);
+            printk("mapped, unbound\n");
         else
         {
             action = (irq_guest_action_t *)desc->action;
 
-            printk("   IRQ:%4d, IRQ affinity:0x%08x, Vec:%3d type=%-15s "
-                    "status=%08x in-flight=%d domain-list=",
-                   irq, *(int*)desc->affinity.bits, cfg->vector,
-                   desc->handler->typename, desc->status, action->in_flight);
+            printk("in-flight=%d domain-list=", action->in_flight);
 
             for ( i = 0; i < action->nr_guests; i++ )
             {




[-- Attachment #2: x86-dump-irq-many-cpus.patch --]
[-- Type: text/plain, Size: 1761 bytes --]

Signed-off-by: Jan Beulich <jbeulich@novell.com>

--- 2010-01-06.orig/xen/arch/x86/irq.c	2010-01-21 15:19:09.000000000 +0100
+++ 2010-01-06/xen/arch/x86/irq.c	2010-01-21 15:43:02.000000000 +0100
@@ -1570,6 +1570,7 @@ static void dump_irqs(unsigned char key)
     irq_guest_action_t *action;
     struct domain *d;
     unsigned long flags;
+    char cpustr[NR_CPUS/4+NR_CPUS/32+2];
 
     printk("Guest interrupt information:\n");
 
@@ -1584,20 +1585,19 @@ static void dump_irqs(unsigned char key)
 
         spin_lock_irqsave(&desc->lock, flags);
 
+        cpumask_scnprintf(cpustr, sizeof(cpustr), desc->affinity);
+        printk("   IRQ:%4d affinity:%s vec:%02x type=%-15s"
+               " status=%08x ",
+               irq, cpustr, cfg->vector,
+               desc->handler->typename, desc->status);
+
         if ( !(desc->status & IRQ_GUEST) )
-            /* Only show CPU0 - CPU31's affinity info.*/
-            printk("   IRQ:%4d, IRQ affinity:0x%08x, Vec:%3d type=%-15s"
-                    " status=%08x mapped, unbound\n",
-                   irq, *(int*)desc->affinity.bits, cfg->vector,
-                    desc->handler->typename, desc->status);
+            printk("mapped, unbound\n");
         else
         {
             action = (irq_guest_action_t *)desc->action;
 
-            printk("   IRQ:%4d, IRQ affinity:0x%08x, Vec:%3d type=%-15s "
-                    "status=%08x in-flight=%d domain-list=",
-                   irq, *(int*)desc->affinity.bits, cfg->vector,
-                   desc->handler->typename, desc->status, action->in_flight);
+            printk("in-flight=%d domain-list=", action->in_flight);
 
             for ( i = 0; i < action->nr_guests; i++ )
             {

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-01-21 14:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-21 14:45 [PATCH] x86: dump full IRQ affinity Jan Beulich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).