diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-03-20 22:31:26 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 22:31:26 -0800 |
commit | c5fed1597ebb2c1bf55a7334cce2d0e8d18ef5b7 (patch) | |
tree | 7fd3a91c0afe7f57be7fdb217cb070acb9bfbbcb /net/dccp/ipv6.c | |
parent | 118b2c9532c853ebdf15c21128d30a343b89ea45 (diff) | |
download | op-kernel-dev-c5fed1597ebb2c1bf55a7334cce2d0e8d18ef5b7.zip op-kernel-dev-c5fed1597ebb2c1bf55a7334cce2d0e8d18ef5b7.tar.gz |
[DCCP]: ditch dccp_v[46]_ctl_send_ack
Merging it with its only user: dccp_v[46]_reqsk_send_ack.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ipv6.c')
-rw-r--r-- | net/dccp/ipv6.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index 0f328c7..7c8233f 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c @@ -580,7 +580,8 @@ static void dccp_v6_ctl_send_reset(struct sk_buff *rxskb) kfree_skb(skb); } -static void dccp_v6_ctl_send_ack(struct sk_buff *rxskb) +static void dccp_v6_reqsk_send_ack(struct sk_buff *rxskb, + struct request_sock *req) { struct flowi fl; struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh; @@ -633,12 +634,6 @@ static void dccp_v6_ctl_send_ack(struct sk_buff *rxskb) kfree_skb(skb); } -static void dccp_v6_reqsk_send_ack(struct sk_buff *skb, - struct request_sock *req) -{ - dccp_v6_ctl_send_ack(skb); -} - static struct sock *dccp_v6_hnd_req(struct sock *sk,struct sk_buff *skb) { const struct dccp_hdr *dh = dccp_hdr(skb); |