• Arnd Bergmann's avatar
    bpf: fix building without CONFIG_INET · df3f94a0
    Arnd Bergmann authored
    The newly added TCP and UDP handling fails to link when CONFIG_INET
    is disabled:
    
    net/core/filter.o: In function `sk_lookup':
    filter.c:(.text+0x7ff8): undefined reference to `tcp_hashinfo'
    filter.c:(.text+0x7ffc): undefined reference to `tcp_hashinfo'
    filter.c:(.text+0x8020): undefined reference to `__inet_lookup_established'
    filter.c:(.text+0x8058): undefined reference to `__inet_lookup_listener'
    filter.c:(.text+0x8068): undefined reference to `udp_table'
    filter.c:(.text+0x8070): undefined reference to `udp_table'
    filter.c:(.text+0x808c): undefined reference to `__udp4_lib_lookup'
    net/core/filter.o: In function `bpf_sk_release':
    filter.c:(.text+0x82e8): undefined reference to `sock_gen_put'
    
    Wrap the related sections of code in #ifdefs for the config option.
    
    Furthermore, sk_lookup() should always have been marked 'static', this
    also avoids a warning about a missing prototype when building with
    'make W=1'.
    
    Fixes: 6acc9b43 ("bpf: Add helper to retrieve socket in BPF")
    Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
    Signed-off-by: default avatarJoe Stringer <joe@wand.net.nz>
    Acked-by: default avatarSong Liu <songliubraving@fb.com>
    Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
    df3f94a0
filter.c 201 KB