diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-31 13:35:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-31 13:35:31 -0700 |
commit | f22e08a79f3765fecf060b225a46931c94fb0a92 (patch) | |
tree | 2f02777e8893d03289ec0a7f5f414f3ff01c8c37 /kernel/sched/sched.h | |
parent | f187e9fd68577cdd5f914659b6f7f11124e40485 (diff) | |
parent | e3831edd59edf57ca11fc289f08961b20baf5146 (diff) | |
download | linux-f22e08a79f3765fecf060b225a46931c94fb0a92.tar.gz linux-f22e08a79f3765fecf060b225a46931c94fb0a92.tar.bz2 linux-f22e08a79f3765fecf060b225a46931c94fb0a92.zip |
Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull scheduler fixes from Ingo Molnar.
* 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
sched: Fix incorrect usage of for_each_cpu_mask() in select_fallback_rq()
sched: Fix __schedule_bug() output when called from an interrupt
sched/arch: Introduce the finish_arch_post_lock_switch() scheduler callback
Diffstat (limited to 'kernel/sched/sched.h')
-rw-r--r-- | kernel/sched/sched.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index 42b1f304b044..fb3acba4d52e 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h @@ -681,6 +681,9 @@ static inline int task_running(struct rq *rq, struct task_struct *p) #ifndef finish_arch_switch # define finish_arch_switch(prev) do { } while (0) #endif +#ifndef finish_arch_post_lock_switch +# define finish_arch_post_lock_switch() do { } while (0) +#endif #ifndef __ARCH_WANT_UNLOCKED_CTXSW static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next) |