aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/udp.c')
-rw-r--r--net/ipv4/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index b37181da487c..1198adf45102 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -2226,7 +2226,7 @@ struct sk_buff *udp4_ufo_fragment(struct sk_buff *skb, int features)
2226 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot 2226 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
2227 * do checksum of UDP packets sent as multiple IP fragments. 2227 * do checksum of UDP packets sent as multiple IP fragments.
2228 */ 2228 */
2229 offset = skb->csum_start - skb_headroom(skb); 2229 offset = skb_checksum_start_offset(skb);
2230 csum = skb_checksum(skb, offset, skb->len - offset, 0); 2230 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2231 offset += skb->csum_offset; 2231 offset += skb->csum_offset;
2232 *(__sum16 *)(skb->data + offset) = csum_fold(csum); 2232 *(__sum16 *)(skb->data + offset) = csum_fold(csum);