summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-08-26 09:06:28 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2017-08-26 09:06:28 -0700
commitc153e62105c3124d7aee0a1fa563df8b8e995078 (patch)
tree432e2df9b427863f9d0e3f12e175f6f6aeab4656 /arch
parent0adb8f3d312966bd3e712248b48098ce086d03bd (diff)
parentccd5b3235180eef3cfec337df1c8554ab151b5cc (diff)
downloadlinux-0-day-c153e62105c3124d7aee0a1fa563df8b8e995078.tar.gz
linux-0-day-c153e62105c3124d7aee0a1fa563df8b8e995078.tar.xz
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Ingo Molnar: "Two fixes: one for an ldt_struct handling bug and a cherry-picked objtool fix" * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/mm: Fix use-after-free of ldt_struct objtool: Fix '-mtune=atom' decoding support in objtool 2.0
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/mmu_context.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/include/asm/mmu_context.h b/arch/x86/include/asm/mmu_context.h
index 265c907d7d4c9..7a234be7e2984 100644
--- a/arch/x86/include/asm/mmu_context.h
+++ b/arch/x86/include/asm/mmu_context.h
@@ -140,9 +140,7 @@ static inline int init_new_context(struct task_struct *tsk,
mm->context.execute_only_pkey = -1;
}
#endif
- init_new_context_ldt(tsk, mm);
-
- return 0;
+ return init_new_context_ldt(tsk, mm);
}
static inline void destroy_context(struct mm_struct *mm)
{