Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 3479
b: refs/heads/master
c: 64053be
h: refs/heads/master
i:
  3477: 7f063db
  3475: c841f37
  3471: 21247b6
v: v3
  • Loading branch information
Robert Olsson authored and David S. Miller committed Jun 26, 2005
1 parent 794c587 commit d9d8884
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 60fe7403209179fccd6629172c4b36acc69c5db6
refs/heads/master: 64053beeb5a5f9cd79903a8c3dd35d1ef0a4685f
29 changes: 13 additions & 16 deletions trunk/net/core/pktgen.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
#include <asm/timex.h>


#define VERSION "pktgen v2.61: Packet Generator for packet performance testing.\n"
#define VERSION "pktgen v2.62: Packet Generator for packet performance testing.\n"

/* #define PG_DEBUG(a) a */
#define PG_DEBUG(a)
Expand Down Expand Up @@ -1921,6 +1921,11 @@ static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
struct iphdr *iph;
struct pktgen_hdr *pgh = NULL;

/* Update any of the values, used when we're incrementing various
* fields.
*/
mod_cur_headers(pkt_dev);

skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16, GFP_ATOMIC);
if (!skb) {
sprintf(pkt_dev->result, "No memory");
Expand All @@ -1934,11 +1939,6 @@ static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
iph = (struct iphdr *)skb_put(skb, sizeof(struct iphdr));
udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr));

/* Update any of the values, used when we're incrementing various
* fields.
*/
mod_cur_headers(pkt_dev);

memcpy(eth, pkt_dev->hh, 12);
*(u16*)&eth[12] = __constant_htons(ETH_P_IP);

Expand Down Expand Up @@ -2192,7 +2192,12 @@ static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
int datalen;
struct ipv6hdr *iph;
struct pktgen_hdr *pgh = NULL;


/* Update any of the values, used when we're incrementing various
* fields.
*/
mod_cur_headers(pkt_dev);

skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16, GFP_ATOMIC);
if (!skb) {
sprintf(pkt_dev->result, "No memory");
Expand All @@ -2206,17 +2211,9 @@ static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
iph = (struct ipv6hdr *)skb_put(skb, sizeof(struct ipv6hdr));
udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr));


/* Update any of the values, used when we're incrementing various
* fields.
*/
mod_cur_headers(pkt_dev);


memcpy(eth, pkt_dev->hh, 12);
*(u16*)&eth[12] = __constant_htons(ETH_P_IPV6);



datalen = pkt_dev->cur_pkt_size-14-
sizeof(struct ipv6hdr)-sizeof(struct udphdr); /* Eth + IPh + UDPh */

Expand Down

0 comments on commit d9d8884

Please sign in to comment.