Displaying 1 result from an estimated 1 matches for "50778f42f2dd".
2006 Mar 30
3
[patch] bitops on irq_cpustat_t->__softirq_pending
...M Linux Technology Center
Use long instead of int for irq_cpustat_t->__softirq_pending, allowing PowerPC
to share this file unchanged (PowerPC bitops operate on longs).
Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
diff -r 50778f42f2dd xen/include/asm-x86/hardirq.h
--- a/xen/include/asm-x86/hardirq.h Wed Mar 29 16:02:40 2006 +0100
+++ b/xen/include/asm-x86/hardirq.h Wed Mar 29 16:23:32 2006 -0600
@@ -5,7 +5,7 @@
#include <xen/cache.h>
typedef struct {
- unsigned int __softirq_pending;
+ unsigned long __softirq_pending;...