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/dccp | |
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/dccp')
-rw-r--r-- | net/dccp/dccp.h | 2 | ||||
-rw-r--r-- | net/dccp/ipv6.c | 4 | ||||
-rw-r--r-- | net/dccp/proto.c | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index f44d492d3b74..1b2cea244e12 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h | |||
@@ -262,7 +262,7 @@ extern int dccp_rcv_established(struct sock *sk, struct sk_buff *skb, | |||
262 | const struct dccp_hdr *dh, const unsigned len); | 262 | const struct dccp_hdr *dh, const unsigned len); |
263 | 263 | ||
264 | extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized); | 264 | extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized); |
265 | extern int dccp_destroy_sock(struct sock *sk); | 265 | extern void dccp_destroy_sock(struct sock *sk); |
266 | 266 | ||
267 | extern void dccp_close(struct sock *sk, long timeout); | 267 | extern void dccp_close(struct sock *sk, long timeout); |
268 | extern struct sk_buff *dccp_make_response(struct sock *sk, | 268 | extern struct sk_buff *dccp_make_response(struct sock *sk, |
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index f7fe2a572d7b..eec3c4717890 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c | |||
@@ -1091,10 +1091,10 @@ static int dccp_v6_init_sock(struct sock *sk) | |||
1091 | return err; | 1091 | return err; |
1092 | } | 1092 | } |
1093 | 1093 | ||
1094 | static int dccp_v6_destroy_sock(struct sock *sk) | 1094 | static void dccp_v6_destroy_sock(struct sock *sk) |
1095 | { | 1095 | { |
1096 | dccp_destroy_sock(sk); | 1096 | dccp_destroy_sock(sk); |
1097 | return inet6_destroy_sock(sk); | 1097 | inet6_destroy_sock(sk); |
1098 | } | 1098 | } |
1099 | 1099 | ||
1100 | static struct timewait_sock_ops dccp6_timewait_sock_ops = { | 1100 | static struct timewait_sock_ops dccp6_timewait_sock_ops = { |
diff --git a/net/dccp/proto.c b/net/dccp/proto.c index 9dfe2470962c..a0b56009611f 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c | |||
@@ -237,7 +237,7 @@ int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized) | |||
237 | 237 | ||
238 | EXPORT_SYMBOL_GPL(dccp_init_sock); | 238 | EXPORT_SYMBOL_GPL(dccp_init_sock); |
239 | 239 | ||
240 | int dccp_destroy_sock(struct sock *sk) | 240 | void dccp_destroy_sock(struct sock *sk) |
241 | { | 241 | { |
242 | struct dccp_sock *dp = dccp_sk(sk); | 242 | struct dccp_sock *dp = dccp_sk(sk); |
243 | struct dccp_minisock *dmsk = dccp_msk(sk); | 243 | struct dccp_minisock *dmsk = dccp_msk(sk); |
@@ -268,8 +268,6 @@ int dccp_destroy_sock(struct sock *sk) | |||
268 | 268 | ||
269 | /* clean up feature negotiation state */ | 269 | /* clean up feature negotiation state */ |
270 | dccp_feat_clean(dmsk); | 270 | dccp_feat_clean(dmsk); |
271 | |||
272 | return 0; | ||
273 | } | 271 | } |
274 | 272 | ||
275 | EXPORT_SYMBOL_GPL(dccp_destroy_sock); | 273 | EXPORT_SYMBOL_GPL(dccp_destroy_sock); |