diff options
author | Alexei Starovoitov <[email protected]> | 2018-05-23 21:29:05 -0700 |
---|---|---|
committer | David S. Miller <[email protected]> | 2018-05-24 09:33:28 -0400 |
commit | 61a552eb487f89dd99d480b711b9a073e22ab4c0 (patch) | |
tree | a2b79d76f86136404c0d38d311614f18618328ab | |
parent | fb83eb93c6aa74e2a2a210a110069738b2648132 (diff) |
bpfilter: fix build dependency
BPFILTER could have been enabled without INET causing this build error:
ERROR: "bpfilter_process_sockopt" [net/bpfilter/bpfilter.ko] undefined!
Fixes: d2ba09c17a06 ("net: add skeleton of bpfilter kernel module")
Reported-by: Jakub Kicinski <[email protected]>
Signed-off-by: Alexei Starovoitov <[email protected]>
Acked-by: Daniel Borkmann <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/bpfilter/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bpfilter/Kconfig b/net/bpfilter/Kconfig index 60725c5f79db..a948b072c28f 100644 --- a/net/bpfilter/Kconfig +++ b/net/bpfilter/Kconfig @@ -1,7 +1,7 @@ menuconfig BPFILTER bool "BPF based packet filtering framework (BPFILTER)" default n - depends on NET && BPF + depends on NET && BPF && INET help This builds experimental bpfilter framework that is aiming to provide netfilter compatible functionality via BPF |