aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/hardirq.h
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2013-03-04 10:22:10 +0100
committerJan Beulich <jbeulich@suse.com>2013-03-04 10:22:10 +0100
commit50c2f44e138ec1677059429be65f82b650ed6b88 (patch)
tree5cecbd2305357b3a361bbfdaa35d90d45f633d5b /xen/include/asm-x86/hardirq.h
parentda46114c1beccf3c5745ce4dbebe6d44bfbd8132 (diff)
downloadxen-50c2f44e138ec1677059429be65f82b650ed6b88.tar.gz
xen-50c2f44e138ec1677059429be65f82b650ed6b88.tar.bz2
xen-50c2f44e138ec1677059429be65f82b650ed6b88.zip
x86: reduce irq_cpustat_t's __softirq_pending to 32 bits
Assembly code was already only accessing the low 32 bits of it, and we're far away from using all 32 bits of it. Noticed-by: Andrew Cooper <andrew.cooper3@citrix.com> Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/include/asm-x86/hardirq.h')
-rw-r--r--xen/include/asm-x86/hardirq.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/asm-x86/hardirq.h b/xen/include/asm-x86/hardirq.h
index 5b9d18b875..e573007b8a 100644
--- a/xen/include/asm-x86/hardirq.h
+++ b/xen/include/asm-x86/hardirq.h
@@ -5,7 +5,7 @@
#include <xen/cache.h>
typedef struct {
- unsigned long __softirq_pending;
+ unsigned int __softirq_pending;
unsigned int __local_irq_count;
unsigned int __nmi_count;
bool_t __mwait_wakeup;