Skip to content

Commit a330601

Browse files
linkmauvegregkh
authored andcommitted
ARM: fix build error when BPF_SYSCALL is disabled
commit 330f4c5 upstream. It was missing a semicolon. Signed-off-by: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> Reviewed-by: Nathan Chancellor <nathan@kernel.org> Fixes: 25875aa ("ARM: include unprivileged BPF status in Spectre V2 reporting"). Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent b65b87e commit a330601

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)