提交 cc1dc6d0 编写于 作者: M Markus Metzger 提交者: Ingo Molnar

x86, bts: remove recursion from get_context

Impact: cleanup

Optimistically allocate a DS context. It is extremely unlikely that
one already existed. This simplifies the code a lot.
Signed-off-by: NMarkus Metzger <markus.t.metzger@intel.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 9dfc3bc7
...@@ -232,53 +232,45 @@ static DEFINE_PER_CPU(struct ds_context *, system_context_array); ...@@ -232,53 +232,45 @@ 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 struct ds_context *ds_get_context(struct task_struct *task)
static inline 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);
struct ds_context *context = *p_context; struct ds_context *context = NULL;
struct ds_context *new_context = NULL;
unsigned long irq; unsigned long irq;
if (!context) { /* Chances are small that we already have a context. */
context = kzalloc(sizeof(*context), GFP_KERNEL); new_context = kzalloc(sizeof(*new_context), GFP_KERNEL);
if (!context) if (!new_context)
return NULL; return NULL;
spin_lock_irqsave(&ds_lock, irq);
if (*p_context) {
kfree(context);
context = *p_context; spin_lock_irqsave(&ds_lock, irq);
} else {
*p_context = context;
context->this = p_context; context = *p_context;
context->task = task; if (!context) {
context = new_context;
if (task) context->this = p_context;
set_tsk_thread_flag(task, TIF_DS_AREA_MSR); context->task = task;
context->count = 0;
if (!task || (task == current)) if (task)
wrmsrl(MSR_IA32_DS_AREA, set_tsk_thread_flag(task, TIF_DS_AREA_MSR);
(unsigned long)context->ds);
}
context->count++; if (!task || (task == current))
wrmsrl(MSR_IA32_DS_AREA, (unsigned long)context->ds);
spin_unlock_irqrestore(&ds_lock, irq); *p_context = context;
} else { }
spin_lock_irqsave(&ds_lock, irq);
context = *p_context; context->count++;
if (context)
context->count++;
spin_unlock_irqrestore(&ds_lock, irq); spin_unlock_irqrestore(&ds_lock, irq);
if (!context) if (context != new_context)
context = ds_get_context(task); kfree(new_context);
}
return context; return context;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册