diff options
Diffstat (limited to 'include/net/udp.h')
-rw-r--r-- | include/net/udp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/udp.h b/include/net/udp.h index 4a9699f79281..4906ed7113e7 100644 --- a/include/net/udp.h +++ b/include/net/udp.h | |||
@@ -89,8 +89,8 @@ static inline int udp_lib_checksum_complete(struct sk_buff *skb) | |||
89 | */ | 89 | */ |
90 | static inline __wsum udp_csum_outgoing(struct sock *sk, struct sk_buff *skb) | 90 | static inline __wsum udp_csum_outgoing(struct sock *sk, struct sk_buff *skb) |
91 | { | 91 | { |
92 | __wsum csum = csum_partial(skb->h.raw, sizeof(struct udphdr), 0); | 92 | __wsum csum = csum_partial(skb_transport_header(skb), |
93 | 93 | sizeof(struct udphdr), 0); | |
94 | skb_queue_walk(&sk->sk_write_queue, skb) { | 94 | skb_queue_walk(&sk->sk_write_queue, skb) { |
95 | csum = csum_add(csum, skb->csum); | 95 | csum = csum_add(csum, skb->csum); |
96 | } | 96 | } |