diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2008-11-17 05:41:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-17 05:41:00 -0500 |
commit | 9a57f7fabd383920585ed8b74eacd117c6551f2d (patch) | |
tree | 893f953e3b4f7cad6a227c5f5dc2209966b2761d /net/sctp | |
parent | a8076d8db98de6da61394b2e942320e4612643ac (diff) |
net: sctp should update its inuse counter
This patch is a preparation to namespace conversion of /proc/net/protocols
In order to have relevant information for SCTP protocols, we should use
sock_prot_inuse_add() to update a (percpu and pernamespace) counter of
inuse sockets.
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/socket.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index a1b904529d5e..0c70eff0b757 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c | |||
@@ -3614,6 +3614,7 @@ SCTP_STATIC int sctp_init_sock(struct sock *sk) | |||
3614 | 3614 | ||
3615 | SCTP_DBG_OBJCNT_INC(sock); | 3615 | SCTP_DBG_OBJCNT_INC(sock); |
3616 | atomic_inc(&sctp_sockets_allocated); | 3616 | atomic_inc(&sctp_sockets_allocated); |
3617 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); | ||
3617 | return 0; | 3618 | return 0; |
3618 | } | 3619 | } |
3619 | 3620 | ||
@@ -3628,6 +3629,7 @@ SCTP_STATIC void sctp_destroy_sock(struct sock *sk) | |||
3628 | ep = sctp_sk(sk)->ep; | 3629 | ep = sctp_sk(sk)->ep; |
3629 | sctp_endpoint_free(ep); | 3630 | sctp_endpoint_free(ep); |
3630 | atomic_dec(&sctp_sockets_allocated); | 3631 | atomic_dec(&sctp_sockets_allocated); |
3632 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); | ||
3631 | } | 3633 | } |
3632 | 3634 | ||
3633 | /* API 4.1.7 shutdown() - TCP Style Syntax | 3635 | /* API 4.1.7 shutdown() - TCP Style Syntax |