|
@@ -848,16 +848,18 @@ void udp_set_csum(bool nocheck, struct sk_buff *skb,
|
|
|
{
|
|
|
struct udphdr *uh = udp_hdr(skb);
|
|
|
|
|
|
- if (nocheck)
|
|
|
+ if (nocheck) {
|
|
|
uh->check = 0;
|
|
|
- else if (skb_is_gso(skb))
|
|
|
+ } else if (skb_is_gso(skb)) {
|
|
|
uh->check = ~udp_v4_check(len, saddr, daddr, 0);
|
|
|
- else if (skb_dst(skb) && skb_dst(skb)->dev &&
|
|
|
- (skb_dst(skb)->dev->features &
|
|
|
- (NETIF_F_IP_CSUM | NETIF_F_HW_CSUM))) {
|
|
|
-
|
|
|
- BUG_ON(skb->ip_summed == CHECKSUM_PARTIAL);
|
|
|
-
|
|
|
+ } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
|
|
|
+ uh->check = 0;
|
|
|
+ uh->check = udp_v4_check(len, saddr, daddr, lco_csum(skb));
|
|
|
+ if (uh->check == 0)
|
|
|
+ uh->check = CSUM_MANGLED_0;
|
|
|
+ } else if (skb_dst(skb) && skb_dst(skb)->dev &&
|
|
|
+ (skb_dst(skb)->dev->features &
|
|
|
+ (NETIF_F_IP_CSUM | NETIF_F_HW_CSUM))) {
|
|
|
skb->ip_summed = CHECKSUM_PARTIAL;
|
|
|
skb->csum_start = skb_transport_header(skb) - skb->head;
|
|
|
skb->csum_offset = offsetof(struct udphdr, check);
|
|
@@ -865,8 +867,6 @@ void udp_set_csum(bool nocheck, struct sk_buff *skb,
|
|
|
} else {
|
|
|
__wsum csum;
|
|
|
|
|
|
- BUG_ON(skb->ip_summed == CHECKSUM_PARTIAL);
|
|
|
-
|
|
|
uh->check = 0;
|
|
|
csum = skb_checksum(skb, 0, len, 0);
|
|
|
uh->check = udp_v4_check(len, saddr, daddr, csum);
|