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

netfilter: netns nf_conntrack: H323 conntracking in netns

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>

authored by

Alexey Dobriyan and committed by
Patrick McHardy
84541cc1 a5c3a800

+2 -1
+2 -1
net/netfilter/nf_conntrack_h323_main.c
··· 1210 1210 union nf_inet_addr *addr, 1211 1211 __be16 port) 1212 1212 { 1213 + struct net *net = nf_ct_net(ct); 1213 1214 struct nf_conntrack_expect *exp; 1214 1215 struct nf_conntrack_tuple tuple; 1215 1216 ··· 1220 1219 tuple.dst.u.tcp.port = port; 1221 1220 tuple.dst.protonum = IPPROTO_TCP; 1222 1221 1223 - exp = __nf_ct_expect_find(&init_net, &tuple); 1222 + exp = __nf_ct_expect_find(net, &tuple); 1224 1223 if (exp && exp->master == ct) 1225 1224 return exp; 1226 1225 return NULL;