Skip to content

Commit 330f4c5

Browse files
linkmauvetorvalds
authored andcommitted
ARM: fix build error when BPF_SYSCALL is disabled
It was missing a semicolon. Signed-off-by: Emmanuel Gil Peyrot <[email protected]> Reviewed-by: Nathan Chancellor <[email protected]> Fixes: 25875aa ("ARM: include unprivileged BPF status in Spectre V2 reporting"). Signed-off-by: Linus Torvalds <[email protected]>
1 parent 4f86a6b commit 330f4c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/kernel/spectre.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ static bool _unprivileged_ebpf_enabled(void)
1010
#ifdef CONFIG_BPF_SYSCALL
1111
return !sysctl_unprivileged_bpf_disabled;
1212
#else
13-
return false
13+
return false;
1414
#endif
1515
}
1616

0 commit comments

Comments
 (0)