net/bpf.o: In function `bpf_gen_filter': bpf.c:852: undefined reference to `get_rand_bpf_fd' Signed-off-by: Jan Stancek <jstancek@xxxxxxxxxx> --- net/bpf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/bpf.c b/net/bpf.c index 4fe941733016..bb07a777abe9 100644 --- a/net/bpf.c +++ b/net/bpf.c @@ -8,6 +8,7 @@ #include <string.h> #include "bpf.h" +#include "config.h" #include "debug.h" #include "log.h" #include "net.h" @@ -849,8 +850,10 @@ void bpf_gen_filter(unsigned long **addr, unsigned long *addrlen) switch (rnd() % 3) { case 0: bpf->filter[i].k = (uint32_t) rand32(); break; +#ifdef USE_BPF case 1: bpf->filter[i].k = (uint32_t) get_rand_bpf_fd(); break; +#endif case 2: break; } -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe trinity" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html