diff options
Diffstat (limited to 'net/dccp/ipv6.c')
| -rw-r--r-- | net/dccp/ipv6.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index af3394df63b..09169889959 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c @@ -14,6 +14,7 @@  #include <linux/module.h>  #include <linux/random.h> +#include <linux/slab.h>  #include <linux/xfrm.h>  #include <net/addrconf.h> @@ -59,8 +60,7 @@ static inline __sum16 dccp_v6_csum_finish(struct sk_buff *skb,  	return csum_ipv6_magic(saddr, daddr, skb->len, IPPROTO_DCCP, skb->csum);  } -static inline void dccp_v6_send_check(struct sock *sk, int unused_value, -				      struct sk_buff *skb) +static inline void dccp_v6_send_check(struct sock *sk, struct sk_buff *skb)  {  	struct ipv6_pinfo *np = inet6_sk(sk);  	struct dccp_hdr *dh = dccp_hdr(skb); @@ -292,7 +292,7 @@ static int dccp_v6_send_response(struct sock *sk, struct request_sock *req,  							 &ireq6->loc_addr,  							 &ireq6->rmt_addr);  		ipv6_addr_copy(&fl.fl6_dst, &ireq6->rmt_addr); -		err = ip6_xmit(sk, skb, &fl, opt, 0); +		err = ip6_xmit(sk, skb, &fl, opt);  		err = net_xmit_eval(err);  	} @@ -347,7 +347,7 @@ static void dccp_v6_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)  	if (!ip6_dst_lookup(ctl_sk, &dst, &fl)) {  		if (xfrm_lookup(net, &dst, &fl, NULL, 0) >= 0) {  			skb_dst_set(skb, dst); -			ip6_xmit(ctl_sk, skb, &fl, NULL, 0); +			ip6_xmit(ctl_sk, skb, &fl, NULL);  			DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);  			DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);  			return;  |