Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

netfilter: remove obsolete need_conntrack stub

as of a0ae2562c6c4b27 ("netfilter: conntrack: remove l3proto
abstraction") there are no users anymore.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

Florian Westphal and committed by
Pablo Neira Ayuso
2953d80f 0935d558

-10
-3
include/linux/netfilter/nf_conntrack_common.h
··· 19 19 unsigned int search_restart; 20 20 }; 21 21 22 - /* call to create an explicit dependency on nf_conntrack. */ 23 - void need_conntrack(void); 24 - 25 22 #endif /* _NF_CONNTRACK_COMMON_H */
-7
net/netfilter/nf_conntrack_standalone.c
··· 720 720 721 721 module_init(nf_conntrack_standalone_init); 722 722 module_exit(nf_conntrack_standalone_fini); 723 - 724 - /* Some modules need us, but don't depend directly on any symbol. 725 - They should call this. */ 726 - void need_conntrack(void) 727 - { 728 - } 729 - EXPORT_SYMBOL_GPL(need_conntrack);