[NETFILTER]: fix xt_state compile failure

In file included from net/netfilter/xt_state.c:13:
include/net/netfilter/nf_conntrack_compat.h: In function 'nf_ct_l3proto_try_module_get':
include/net/netfilter/nf_conntrack_compat.h:70: error: 'PF_INET' undeclared (first use in this function)
include/net/netfilter/nf_conntrack_compat.h:70: error: (Each undeclared identifier is reported only once
include/net/netfilter/nf_conntrack_compat.h:70: error: for each function it appears in.)
include/net/netfilter/nf_conntrack_compat.h:71: warning: control reaches end of non-void function
make[2]: *** [net/netfilter/xt_state.o] Error 1
make[1]: *** [net/netfilter] Error 2
make: *** [net] Error 2

A simple fix is to have nf_conntrack_compat.h #include <linux/socket.h>.

Signed-off-by: Mikael Pettersson <mikpe@it.uu.se>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Mikael Pettersson and committed by David S. Miller 16d80798 c54ea3b9

+1
+1
include/net/netfilter/nf_conntrack_compat.h
··· 6 #if defined(CONFIG_IP_NF_CONNTRACK) || defined(CONFIG_IP_NF_CONNTRACK_MODULE) 7 8 #include <linux/netfilter_ipv4/ip_conntrack.h> 9 10 #ifdef CONFIG_IP_NF_CONNTRACK_MARK 11 static inline u_int32_t *nf_ct_get_mark(const struct sk_buff *skb,
··· 6 #if defined(CONFIG_IP_NF_CONNTRACK) || defined(CONFIG_IP_NF_CONNTRACK_MODULE) 7 8 #include <linux/netfilter_ipv4/ip_conntrack.h> 9 + #include <linux/socket.h> 10 11 #ifdef CONFIG_IP_NF_CONNTRACK_MARK 12 static inline u_int32_t *nf_ct_get_mark(const struct sk_buff *skb,