aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/Kconfig2
-rw-r--r--arch/powerpc/Kconfig2
-rw-r--r--arch/sparc/Kconfig2
-rw-r--r--arch/x86/Kconfig2
-rw-r--r--net/Kconfig7
5 files changed, 8 insertions, 7 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 36586dba6fa..e19ed3fd308 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -33,7 +33,7 @@ config ARM
33 select GENERIC_IRQ_SHOW 33 select GENERIC_IRQ_SHOW
34 select CPU_PM if (SUSPEND || CPU_IDLE) 34 select CPU_PM if (SUSPEND || CPU_IDLE)
35 select GENERIC_PCI_IOMAP 35 select GENERIC_PCI_IOMAP
36 select HAVE_BPF_JIT if NET 36 select HAVE_BPF_JIT
37 help 37 help
38 The ARM series is a line of low-power-consumption RISC chip designs 38 The ARM series is a line of low-power-consumption RISC chip designs
39 licensed by ARM Ltd and targeted at embedded applications and 39 licensed by ARM Ltd and targeted at embedded applications and
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index feab3bad6d0..73ec0394571 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -141,7 +141,7 @@ config PPC
141 select IRQ_FORCED_THREADING 141 select IRQ_FORCED_THREADING
142 select HAVE_RCU_TABLE_FREE if SMP 142 select HAVE_RCU_TABLE_FREE if SMP
143 select HAVE_SYSCALL_TRACEPOINTS 143 select HAVE_SYSCALL_TRACEPOINTS
144 select HAVE_BPF_JIT if (PPC64 && NET) 144 select HAVE_BPF_JIT if PPC64
145 select HAVE_ARCH_JUMP_LABEL 145 select HAVE_ARCH_JUMP_LABEL
146 select ARCH_HAVE_NMI_SAFE_CMPXCHG 146 select ARCH_HAVE_NMI_SAFE_CMPXCHG
147 147
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig
index 6c49ed2ee78..d176c03274c 100644
--- a/arch/sparc/Kconfig
+++ b/arch/sparc/Kconfig
@@ -30,7 +30,7 @@ config SPARC
30 select USE_GENERIC_SMP_HELPERS if SMP 30 select USE_GENERIC_SMP_HELPERS if SMP
31 select GENERIC_PCI_IOMAP 31 select GENERIC_PCI_IOMAP
32 select HAVE_NMI_WATCHDOG if SPARC64 32 select HAVE_NMI_WATCHDOG if SPARC64
33 select HAVE_BPF_JIT if NET 33 select HAVE_BPF_JIT
34 34
35config SPARC32 35config SPARC32
36 def_bool !64BIT 36 def_bool !64BIT
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index c9866b0b77d..25f87bccbf8 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -77,7 +77,7 @@ config X86
77 select GENERIC_CLOCKEVENTS_MIN_ADJUST 77 select GENERIC_CLOCKEVENTS_MIN_ADJUST
78 select IRQ_FORCED_THREADING 78 select IRQ_FORCED_THREADING
79 select USE_GENERIC_SMP_HELPERS if SMP 79 select USE_GENERIC_SMP_HELPERS if SMP
80 select HAVE_BPF_JIT if (X86_64 && NET) 80 select HAVE_BPF_JIT if X86_64
81 select CLKEVT_I8253 81 select CLKEVT_I8253
82 select ARCH_HAVE_NMI_SAFE_CMPXCHG 82 select ARCH_HAVE_NMI_SAFE_CMPXCHG
83 select GENERIC_IOMAP 83 select GENERIC_IOMAP
diff --git a/net/Kconfig b/net/Kconfig
index 1e47bd03dde..245831bec09 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -246,9 +246,6 @@ config BQL
246 select DQL 246 select DQL
247 default y 247 default y
248 248
249config HAVE_BPF_JIT
250 bool
251
252config BPF_JIT 249config BPF_JIT
253 bool "enable BPF Just In Time compiler" 250 bool "enable BPF Just In Time compiler"
254 depends on HAVE_BPF_JIT 251 depends on HAVE_BPF_JIT
@@ -340,3 +337,7 @@ source "net/nfc/Kconfig"
340 337
341 338
342endif # if NET 339endif # if NET
340
341# Used by archs to tell that they support BPF_JIT
342config HAVE_BPF_JIT
343 bool