diff options
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/inet6_hashtables.c | 4 | ||||
-rw-r--r-- | net/ipv6/ipv6_sockglue.c | 10 | ||||
-rw-r--r-- | net/ipv6/proc.c | 8 |
3 files changed, 12 insertions, 10 deletions
diff --git a/net/ipv6/inet6_hashtables.c b/net/ipv6/inet6_hashtables.c index 340c7d42b83a..580014aea4d6 100644 --- a/net/ipv6/inet6_hashtables.c +++ b/net/ipv6/inet6_hashtables.c | |||
@@ -43,7 +43,7 @@ void __inet6_hash(struct sock *sk) | |||
43 | } | 43 | } |
44 | 44 | ||
45 | __sk_add_node(sk, list); | 45 | __sk_add_node(sk, list); |
46 | sock_prot_inuse_add(sk->sk_prot, 1); | 46 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); |
47 | write_unlock(lock); | 47 | write_unlock(lock); |
48 | } | 48 | } |
49 | EXPORT_SYMBOL(__inet6_hash); | 49 | EXPORT_SYMBOL(__inet6_hash); |
@@ -204,7 +204,7 @@ unique: | |||
204 | BUG_TRAP(sk_unhashed(sk)); | 204 | BUG_TRAP(sk_unhashed(sk)); |
205 | __sk_add_node(sk, &head->chain); | 205 | __sk_add_node(sk, &head->chain); |
206 | sk->sk_hash = hash; | 206 | sk->sk_hash = hash; |
207 | sock_prot_inuse_add(sk->sk_prot, 1); | 207 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); |
208 | write_unlock(lock); | 208 | write_unlock(lock); |
209 | 209 | ||
210 | if (twp != NULL) { | 210 | if (twp != NULL) { |
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c index d3d93d752e10..4195ac92345e 100644 --- a/net/ipv6/ipv6_sockglue.c +++ b/net/ipv6/ipv6_sockglue.c | |||
@@ -155,10 +155,11 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname, | |||
155 | 155 | ||
156 | if (sk->sk_protocol == IPPROTO_TCP) { | 156 | if (sk->sk_protocol == IPPROTO_TCP) { |
157 | struct inet_connection_sock *icsk = inet_csk(sk); | 157 | struct inet_connection_sock *icsk = inet_csk(sk); |
158 | struct net *net = sock_net(sk); | ||
158 | 159 | ||
159 | local_bh_disable(); | 160 | local_bh_disable(); |
160 | sock_prot_inuse_add(sk->sk_prot, -1); | 161 | sock_prot_inuse_add(net, sk->sk_prot, -1); |
161 | sock_prot_inuse_add(&tcp_prot, 1); | 162 | sock_prot_inuse_add(net, &tcp_prot, 1); |
162 | local_bh_enable(); | 163 | local_bh_enable(); |
163 | sk->sk_prot = &tcp_prot; | 164 | sk->sk_prot = &tcp_prot; |
164 | icsk->icsk_af_ops = &ipv4_specific; | 165 | icsk->icsk_af_ops = &ipv4_specific; |
@@ -167,12 +168,13 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname, | |||
167 | tcp_sync_mss(sk, icsk->icsk_pmtu_cookie); | 168 | tcp_sync_mss(sk, icsk->icsk_pmtu_cookie); |
168 | } else { | 169 | } else { |
169 | struct proto *prot = &udp_prot; | 170 | struct proto *prot = &udp_prot; |
171 | struct net *net = sock_net(sk); | ||
170 | 172 | ||
171 | if (sk->sk_protocol == IPPROTO_UDPLITE) | 173 | if (sk->sk_protocol == IPPROTO_UDPLITE) |
172 | prot = &udplite_prot; | 174 | prot = &udplite_prot; |
173 | local_bh_disable(); | 175 | local_bh_disable(); |
174 | sock_prot_inuse_add(sk->sk_prot, -1); | 176 | sock_prot_inuse_add(net, sk->sk_prot, -1); |
175 | sock_prot_inuse_add(prot, 1); | 177 | sock_prot_inuse_add(net, prot, 1); |
176 | local_bh_enable(); | 178 | local_bh_enable(); |
177 | sk->sk_prot = prot; | 179 | sk->sk_prot = prot; |
178 | sk->sk_socket->ops = &inet_dgram_ops; | 180 | sk->sk_socket->ops = &inet_dgram_ops; |
diff --git a/net/ipv6/proc.c b/net/ipv6/proc.c index 364dc332532c..4b9d5a905725 100644 --- a/net/ipv6/proc.c +++ b/net/ipv6/proc.c | |||
@@ -36,13 +36,13 @@ static struct proc_dir_entry *proc_net_devsnmp6; | |||
36 | static int sockstat6_seq_show(struct seq_file *seq, void *v) | 36 | static int sockstat6_seq_show(struct seq_file *seq, void *v) |
37 | { | 37 | { |
38 | seq_printf(seq, "TCP6: inuse %d\n", | 38 | seq_printf(seq, "TCP6: inuse %d\n", |
39 | sock_prot_inuse_get(&tcpv6_prot)); | 39 | sock_prot_inuse_get(&init_net, &tcpv6_prot)); |
40 | seq_printf(seq, "UDP6: inuse %d\n", | 40 | seq_printf(seq, "UDP6: inuse %d\n", |
41 | sock_prot_inuse_get(&udpv6_prot)); | 41 | sock_prot_inuse_get(&init_net, &udpv6_prot)); |
42 | seq_printf(seq, "UDPLITE6: inuse %d\n", | 42 | seq_printf(seq, "UDPLITE6: inuse %d\n", |
43 | sock_prot_inuse_get(&udplitev6_prot)); | 43 | sock_prot_inuse_get(&init_net, &udplitev6_prot)); |
44 | seq_printf(seq, "RAW6: inuse %d\n", | 44 | seq_printf(seq, "RAW6: inuse %d\n", |
45 | sock_prot_inuse_get(&rawv6_prot)); | 45 | sock_prot_inuse_get(&init_net, &rawv6_prot)); |
46 | seq_printf(seq, "FRAG6: inuse %d memory %d\n", | 46 | seq_printf(seq, "FRAG6: inuse %d memory %d\n", |
47 | ip6_frag_nqueues(&init_net), ip6_frag_mem(&init_net)); | 47 | ip6_frag_nqueues(&init_net), ip6_frag_mem(&init_net)); |
48 | return 0; | 48 | return 0; |