aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorDaniel Turull <daniel.turull@gmail.com>2011-03-14 16:47:40 -0400
committerDavid S. Miller <davem@davemloft.net>2011-03-14 16:47:40 -0400
commit05aebe2e5d009314a1d9b47ad9cda59ccb57d76d (patch)
treebd448f392fbc522034f51e032f5f25bc87951a38 /net
parent4e75db2e8ff2c97762e87f61f54d7cdeaab1a6b0 (diff)
pktgen: bug fix in transmission headers with frags=0
(bug introduced by commit 26ad787962ef84677a48c560 (pktgen: speedup fragmented skbs) The headers of pktgen were incorrectly added in a pktgen packet without frags (frags=0). There was an offset in the pktgen headers. The cause was in reusing the pgh variable as a return variable in skb_put when adding the payload to the skb. Signed-off-by: Daniel Turull <daniel.turull@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Diffstat (limited to 'net')
-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 f0aec6c39ecd..0c55eaa70e39 100644
--- a/net/core/pktgen.c
+++ b/net/core/pktgen.c
@@ -2620,8 +2620,7 @@ static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2620 datalen -= sizeof(*pgh); 2620 datalen -= sizeof(*pgh);
2621 2621
2622 if (pkt_dev->nfrags <= 0) { 2622 if (pkt_dev->nfrags <= 0) {
2623 pgh = (struct pktgen_hdr *)skb_put(skb, datalen); 2623 memset(skb_put(skb, datalen), 0, datalen);
2624 memset(pgh + 1, 0, datalen);
2625 } else { 2624 } else {
2626 int frags = pkt_dev->nfrags; 2625 int frags = pkt_dev->nfrags;
2627 int i, len; 2626 int i, len;