aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/irq_cpustat.h
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-11-24 11:34:32 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-11-24 11:34:32 +0000
commit42217cbc5b3e84b8c145d8cfb62dd5de0134b9e8 (patch)
tree1f92361142835cc070cb0cea8fba439e0fdbac6d /xen/include/xen/irq_cpustat.h
parent3a0b9c57d5c9e82c55dd967c84dd06cb43c49ee9 (diff)
downloadxen-42217cbc5b3e84b8c145d8cfb62dd5de0134b9e8.tar.gz
xen-42217cbc5b3e84b8c145d8cfb62dd5de0134b9e8.tar.bz2
xen-42217cbc5b3e84b8c145d8cfb62dd5de0134b9e8.zip
bitkeeper revision 1.1159.187.4 (41a471c8NjyQJy-vepqpb8H7LdzHzA)
Allow preemption of long-running hypercalls for softirq processing.
Diffstat (limited to 'xen/include/xen/irq_cpustat.h')
-rw-r--r--xen/include/xen/irq_cpustat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/include/xen/irq_cpustat.h b/xen/include/xen/irq_cpustat.h
index 075f55bf29..9d09ad3fb8 100644
--- a/xen/include/xen/irq_cpustat.h
+++ b/xen/include/xen/irq_cpustat.h
@@ -10,6 +10,7 @@
*/
#include <xen/config.h>
+#include <asm/hardirq.h>
/*
* Simple wrappers reducing source bloat. Define all irq_stat fields
@@ -17,7 +18,7 @@
* definitions instead of differing sets for each arch.
*/
-extern irq_cpustat_t irq_stat[]; /* defined in asm/hardirq.h */
+extern irq_cpustat_t irq_stat[];
#ifdef CONFIG_SMP
#define __IRQ_STAT(cpu, member) (irq_stat[cpu].member)