]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net: bpf: fix bpf syscall dependence on anon_inodes
authorAlexei Starovoitov <ast@plumgrid.com>
Thu, 9 Oct 2014 22:16:41 +0000 (15:16 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 10 Oct 2014 19:02:23 +0000 (15:02 -0400)
minimal configurations where EPOLL, PERF_EVENTS, etc are disabled,
but NET is enabled, are failing to build with link error:
kernel/built-in.o: In function `bpf_prog_load':
syscall.c:(.text+0x3b728): undefined reference to `anon_inode_getfd'

fix it by selecting ANON_INODES when NET is enabled

Reported-by: Michal Sojka <sojkam1@fel.cvut.cz>
Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/Kconfig

index d6b138e2c263851d0164cc321794363a52cc6c77..6272420a721b0f01e15ffc572251a8f0794d5d8f 100644 (file)
@@ -6,6 +6,7 @@ menuconfig NET
        bool "Networking support"
        select NLATTR
        select GENERIC_NET_UTILS
+       select ANON_INODES
        ---help---
          Unless you really know what you are doing, you should say Y here.
          The reason is that some programs need kernel networking support even