aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/softirq.h
diff options
context:
space:
mode:
authorkaf24@freefall.cl.cam.ac.uk <kaf24@freefall.cl.cam.ac.uk>2004-11-01 14:33:53 +0000
committerkaf24@freefall.cl.cam.ac.uk <kaf24@freefall.cl.cam.ac.uk>2004-11-01 14:33:53 +0000
commitb73cc6b15c701015848ed3556d20066a315f3e38 (patch)
tree4a9a20aa3b10dfded84ac1ae3cf1bf56985e1019 /xen/include/xen/softirq.h
parent1b354ce174983eab7c4885325b7e04c45edcd0c3 (diff)
downloadxen-b73cc6b15c701015848ed3556d20066a315f3e38.tar.gz
xen-b73cc6b15c701015848ed3556d20066a315f3e38.tar.bz2
xen-b73cc6b15c701015848ed3556d20066a315f3e38.zip
bitkeeper revision 1.1159.1.320 (4186495166A8XLekEbNixl7hWUA08w)
Clean up softirq handling. All debug keypresses are now deferred to a softirq handler.
Diffstat (limited to 'xen/include/xen/softirq.h')
-rw-r--r--xen/include/xen/softirq.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/xen/include/xen/softirq.h b/xen/include/xen/softirq.h
index 7bf05b9f46..6180dae775 100644
--- a/xen/include/xen/softirq.h
+++ b/xen/include/xen/softirq.h
@@ -1,13 +1,13 @@
#ifndef __XEN_SOFTIRQ_H__
#define __XEN_SOFTIRQ_H__
+/* Common softirqs come first in the following list. */
#define AC_TIMER_SOFTIRQ 0
-#define NEW_TLBFLUSH_CLOCK_PERIOD_SOFTIRQ 1
-#define DEBUGGER_SOFTIRQ 2
-#define NMI_SOFTIRQ 3
-#define SCHEDULE_SOFTIRQ 4
-#define MEMAUDIT_SOFTIRQ 5
-#define NR_SOFTIRQS 6
+#define SCHEDULE_SOFTIRQ 1
+#define NEW_TLBFLUSH_CLOCK_PERIOD_SOFTIRQ 2
+#define KEYPRESS_SOFTIRQ 3
+#define NMI_SOFTIRQ 4
+#define NR_SOFTIRQS 5
#ifndef __ASSEMBLY__