You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
UPSTREAM: ARM: fix build error when BPF_SYSCALL is disabled
commit330f4c53d3upstream. It was missing a semicolon. Bug: 215557547 Signed-off-by: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> Reviewed-by: Nathan Chancellor <nathan@kernel.org> Fixes:25875aa71d("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> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: Ifb28334a7ddaf7976ccb19839f225341e1c504d6
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7ab81873bd
commit
4c5218ead0
@@ -10,7 +10,7 @@ static bool _unprivileged_ebpf_enabled(void)
|
||||
#ifdef CONFIG_BPF_SYSCALL
|
||||
return !sysctl_unprivileged_bpf_disabled;
|
||||
#else
|
||||
return false
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user