From: Andrew Morton Signed-off-by: Andrew Morton --- drivers/net/ixgb/ixgb_main.c | 2 +- socket.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/ixgb/ixgb_main.c~git-net-fixup drivers/net/ixgb/ixgb_main.c --- a/drivers/net/ixgb/ixgb_main.c~git-net-fixup +++ a/drivers/net/ixgb/ixgb_main.c @@ -1246,7 +1246,7 @@ ixgb_tx_csum(struct ixgb_adapter *adapte unsigned int i; uint8_t css, cso; - if(likely(skb->ip_summed == CHECKSUM_HW)) { + if(likely(skb->ip_summed == CHECKSUM_PARTIAL)) { struct ixgb_buffer *buffer_info; css = skb->h.raw - skb->data; cso = (skb->h.raw + skb->csum) - skb->data; diff -puN net/socket.c~git-net-fixup net/socket.c _