Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9cddf15f authored by Randy Dunlap's avatar Randy Dunlap Committed by David S. Miller
Browse files

x86/net: only select BPF_JIT when NET is enabled



Fix kconfig unmet dependency warning: HAVE_BPF_JIT depends on NET, so
make the "select" of it depend on NET also.

warning: (X86) selects HAVE_BPF_JIT which has unmet direct dependencies (NET)

Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 18a353f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ config X86
	select IRQ_FORCED_THREADING
	select USE_GENERIC_SMP_HELPERS if SMP
	select ARCH_NO_SYSDEV_OPS
	select HAVE_BPF_JIT if X86_64
	select HAVE_BPF_JIT if (X86_64 && NET)

config INSTRUCTION_DECODER
	def_bool (KPROBES || PERF_EVENTS)