aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_ipv4.c
diff options
context:
space:
mode:
authorBrian Haley <brian.haley@hp.com>2008-06-14 20:04:49 -0400
committerDavid S. Miller <davem@davemloft.net>2008-06-14 20:04:49 -0400
commit7d06b2e053d2d536348e3a0f6bb02982a41bea37 (patch)
treeec6a5c3f448e84cd431a0397b9e2a87ca25aec17 /net/ipv4/tcp_ipv4.c
parent4ae127d1b6c71f9240dd4245f240e6dd8fc98014 (diff)
net: change proto destroy method to return void
Change struct proto destroy function pointer to return void. Noticed by Al Viro. Signed-off-by: Brian Haley <brian.haley@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r--net/ipv4/tcp_ipv4.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index b219a7a7cd08..64b385f65930 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -1775,7 +1775,7 @@ static int tcp_v4_init_sock(struct sock *sk)
1775 return 0; 1775 return 0;
1776} 1776}
1777 1777
1778int tcp_v4_destroy_sock(struct sock *sk) 1778void tcp_v4_destroy_sock(struct sock *sk)
1779{ 1779{
1780 struct tcp_sock *tp = tcp_sk(sk); 1780 struct tcp_sock *tp = tcp_sk(sk);
1781 1781
@@ -1819,8 +1819,6 @@ int tcp_v4_destroy_sock(struct sock *sk)
1819 } 1819 }
1820 1820
1821 atomic_dec(&tcp_sockets_allocated); 1821 atomic_dec(&tcp_sockets_allocated);
1822
1823 return 0;
1824} 1822}
1825 1823
1826EXPORT_SYMBOL(tcp_v4_destroy_sock); 1824EXPORT_SYMBOL(tcp_v4_destroy_sock);