mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 09:32:32 +00:00
5d1c574511
This patch corresponds to
[PATCH] x86: Use the new schedule_user API on userspace preemption
commit 0430499ce9
Signed-off-by: Li Zhong <zhong@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
11 lines
208 B
C
11 lines
208 B
C
#ifndef _ASM_POWERPC_CONTEXT_TRACKING_H
|
|
#define _ASM_POWERPC_CONTEXT_TRACKING_H
|
|
|
|
#ifdef CONFIG_CONTEXT_TRACKING
|
|
#define SCHEDULE_USER bl .schedule_user
|
|
#else
|
|
#define SCHEDULE_USER bl .schedule
|
|
#endif
|
|
|
|
#endif
|