Skip to content

Commit 4b050f2

Browse files
committed
Merge tag 'extable-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux
Pull extable.h fix from Paul Gortmaker: "Fixup for arch/score after extable.h introduction. It seems that Guenter is the only one on the planet doing builds for arch/score -- we don't have compile coverage for it in linux-next or in the kbuild-bot either. Guenter couldn't even recall where he got his toolchain, but was kind enough to share it with me so I could validate this change and also add arch/score to my build coverage. I sat on this a bit in case there was any other fallout in other arch dirs, but since this still seems to be the only one, I might as well send it on its way" * tag 'extable-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux: score: Fix implicit includes now failing build after extable change
2 parents 84c37c1 + 0acf611 commit 4b050f2

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

arch/score/kernel/traps.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
*/
2525

2626
#include <linux/extable.h>
27+
#include <linux/ptrace.h>
2728
#include <linux/sched/mm.h>
2829
#include <linux/sched/signal.h>
2930
#include <linux/sched/debug.h>

arch/score/mm/extable.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
*/
2525

2626
#include <linux/extable.h>
27+
#include <linux/ptrace.h>
28+
#include <asm/extable.h>
2729

2830
int fixup_exception(struct pt_regs *regs)
2931
{

0 commit comments

Comments
 (0)