diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-07 02:10:53 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-07 02:10:53 +0100 |
commit | 3610639d1fceb09cb418c65fcbe9136c31eee03a (patch) | |
tree | 78aa6de9e9495c39f8671aed927fece5adff8d24 /include | |
parent | Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/ke... (diff) | |
parent | hrtimer: splitout peek ahead functionality, fix (diff) | |
download | linux-3610639d1fceb09cb418c65fcbe9136c31eee03a.tar.xz linux-3610639d1fceb09cb418c65fcbe9136c31eee03a.zip |
Merge branch 'timers-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'timers-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
hrtimer: splitout peek ahead functionality, fix
hrtimer: fixup comments
hrtimer: fix recursion deadlock by re-introducing the softirq
hrtimer: simplify hotplug migration
hrtimer: fix HOTPLUG_CPU=n compile warning
hrtimer: splitout peek ahead functionality
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/interrupt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index af886b26c9d1..9127f6b51a39 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -252,7 +252,8 @@ enum BLOCK_SOFTIRQ, TASKLET_SOFTIRQ, SCHED_SOFTIRQ, - RCU_SOFTIRQ, /* Preferable RCU should always be the last softirq */ + HRTIMER_SOFTIRQ, + RCU_SOFTIRQ, /* Preferable RCU should always be the last softirq */ NR_SOFTIRQS }; |