mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 01:06:48 +07:00
x86, bts: fix build error
Impact: build fix arch/x86/kernel/ds.c: In function 'ds_request': arch/x86/kernel/ds.c:236: sorry, unimplemented: inlining failed in call to 'ds_get_context': recursive inlining but the recursion here is scary ... Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
a93751cab7
commit
ffc2238af8
@ -232,7 +232,7 @@ static DEFINE_PER_CPU(struct ds_context *, system_context_array);
|
|||||||
|
|
||||||
#define system_context per_cpu(system_context_array, smp_processor_id())
|
#define system_context per_cpu(system_context_array, smp_processor_id())
|
||||||
|
|
||||||
static inline struct ds_context *ds_get_context(struct task_struct *task)
|
static struct ds_context *ds_get_context(struct task_struct *task)
|
||||||
{
|
{
|
||||||
struct ds_context **p_context =
|
struct ds_context **p_context =
|
||||||
(task ? &task->thread.ds_ctx : &system_context);
|
(task ? &task->thread.ds_ctx : &system_context);
|
||||||
|
Loading…
Reference in New Issue
Block a user