diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2011-05-04 14:06:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-04 14:06:05 -0400 |
commit | 9cddf15f18865c4f7124d829be41799f59aaa5cf (patch) | |
tree | 9fa5b220e107e29f71344c64b12d9bb9eec4b0d1 /arch | |
parent | 18a353f42817f08e3501162ceda9d2efddb08a40 (diff) |
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: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 855a1bdc437d..2096cf180648 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -72,7 +72,7 @@ config X86 | |||
72 | select IRQ_FORCED_THREADING | 72 | select IRQ_FORCED_THREADING |
73 | select USE_GENERIC_SMP_HELPERS if SMP | 73 | select USE_GENERIC_SMP_HELPERS if SMP |
74 | select ARCH_NO_SYSDEV_OPS | 74 | select ARCH_NO_SYSDEV_OPS |
75 | select HAVE_BPF_JIT if X86_64 | 75 | select HAVE_BPF_JIT if (X86_64 && NET) |
76 | 76 | ||
77 | config INSTRUCTION_DECODER | 77 | config INSTRUCTION_DECODER |
78 | def_bool (KPROBES || PERF_EVENTS) | 78 | def_bool (KPROBES || PERF_EVENTS) |