From: Andrew Morton I think CHECKSUM_COMPLETE is the right one here. Cc: Jeff Garzik Signed-off-by: Andrew Morton --- drivers/net/netxen/netxen_nic_hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/netxen/netxen_nic_hw.c~netxen-build-fix drivers/net/netxen/netxen_nic_hw.c --- a/drivers/net/netxen/netxen_nic_hw.c~netxen-build-fix +++ a/drivers/net/netxen/netxen_nic_hw.c @@ -351,7 +351,7 @@ void netxen_tso_check(struct netxen_adap ((skb->nh.iph)->ihl * sizeof(u32)) + ((skb->h.th)->doff * sizeof(u32)); desc->opcode = TX_TCP_LSO; - } else if (skb->ip_summed == CHECKSUM_HW) { + } else if (skb->ip_summed == CHECKSUM_COMPLETE) { if (skb->nh.iph->protocol == IPPROTO_TCP) { desc->opcode = TX_TCP_PKT; } else if (skb->nh.iph->protocol == IPPROTO_UDP) { _