diff options
author | Brian Haley <brian.haley@hp.com> | 2008-06-14 20:04:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-14 20:04:49 -0400 |
commit | 7d06b2e053d2d536348e3a0f6bb02982a41bea37 (patch) | |
tree | ec6a5c3f448e84cd431a0397b9e2a87ca25aec17 /net/ipv6/udp.c | |
parent | 4ae127d1b6c71f9240dd4245f240e6dd8fc98014 (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/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index e0693fffc9bd..09687f7a8564 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
@@ -879,15 +879,13 @@ do_confirm: | |||
879 | goto out; | 879 | goto out; |
880 | } | 880 | } |
881 | 881 | ||
882 | int udpv6_destroy_sock(struct sock *sk) | 882 | void udpv6_destroy_sock(struct sock *sk) |
883 | { | 883 | { |
884 | lock_sock(sk); | 884 | lock_sock(sk); |
885 | udp_v6_flush_pending_frames(sk); | 885 | udp_v6_flush_pending_frames(sk); |
886 | release_sock(sk); | 886 | release_sock(sk); |
887 | 887 | ||
888 | inet6_destroy_sock(sk); | 888 | inet6_destroy_sock(sk); |
889 | |||
890 | return 0; | ||
891 | } | 889 | } |
892 | 890 | ||
893 | /* | 891 | /* |