x86/fpu: Use 'struct fpu' in fpu__save()
Migrate this function to pure 'struct fpu' usage. Reviewed-by: Borislav Petkov <bp@alien8.de> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: Fenghua Yu <fenghua.yu@intel.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
@@ -142,11 +142,9 @@ static void __save_fpu(struct fpu *fpu)
|
||||
*
|
||||
* This only ever gets called for the current task.
|
||||
*/
|
||||
void fpu__save(struct task_struct *tsk)
|
||||
void fpu__save(struct fpu *fpu)
|
||||
{
|
||||
struct fpu *fpu = &tsk->thread.fpu;
|
||||
|
||||
WARN_ON(tsk != current);
|
||||
WARN_ON(fpu != ¤t->thread.fpu);
|
||||
|
||||
preempt_disable();
|
||||
if (fpu->has_fpu) {
|
||||
@@ -240,7 +238,7 @@ static void fpu_copy(struct task_struct *dst, struct task_struct *src)
|
||||
memset(&dst->thread.fpu.state->xsave, 0, xstate_size);
|
||||
__save_fpu(dst_fpu);
|
||||
} else {
|
||||
fpu__save(src);
|
||||
fpu__save(src_fpu);
|
||||
memcpy(dst_fpu->state, src_fpu->state, xstate_size);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user