summaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorThomas Graf2013-07-25 14:08:04 +0200
committerDavid S. Miller2013-07-28 07:18:00 +0200
commit03c633e73353d3c116cab6164933d69ee2180470 (patch)
treea8ce3baa7df828490c8ea1635b624794ed30b32c /net/core
parentpktgen: Add UDPCSUM flag to support UDP checksums (diff)
downloadkernel-qcow2-linux-03c633e73353d3c116cab6164933d69ee2180470.tar.gz
kernel-qcow2-linux-03c633e73353d3c116cab6164933d69ee2180470.tar.xz
kernel-qcow2-linux-03c633e73353d3c116cab6164933d69ee2180470.zip
pktgen: Use ip_send_check() to compute checksum
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/pktgen.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c
index 48cebf2c3e7a..2dec6f1b0cd7 100644
--- a/net/core/pktgen.c
+++ b/net/core/pktgen.c
@@ -2758,8 +2758,7 @@ static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
iph->frag_off = 0;
iplen = 20 + 8 + datalen;
iph->tot_len = htons(iplen);
- iph->check = 0;
- iph->check = ip_fast_csum((void *)iph, iph->ihl);
+ ip_send_check(iph);
skb->protocol = protocol;
skb->dev = odev;
skb->pkt_type = PACKET_HOST;