public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]pktgen oops when used with balance-tlb bonding
@ 2006-07-22 23:11 Tien ChenLi
  2006-07-24  6:35 ` David Miller
  2006-08-02 20:38 ` Willy Tarreau
  0 siblings, 2 replies; 7+ messages in thread
From: Tien ChenLi @ 2006-07-22 23:11 UTC (permalink / raw)
  To: linux-kernel

I fixed a bug in pktgen so it won't cause oops when used with
balance-tlb or balance-alb bonding driver:

--- linux-2.6.17.4/net/core/pktgen.c.orig       2006-07-06 16:02:28.000000000 -0
400
+++ linux-2.6.17.4/net/core/pktgen.c    2006-07-10 16:40:47.000000000 -0400
@@ -2149,6 +2149,9 @@
        skb->mac.raw = ((u8 *) iph) - 14 - pkt_dev->nr_labels*sizeof(u32);
        skb->dev = odev;
        skb->pkt_type = PACKET_HOST;
+       skb->mac.raw = eth;
+       skb->nh.iph = iph;
+       skb->h.uh = udph;

        if (pkt_dev->nfrags <= 0)
                pgh = (struct pktgen_hdr *)skb_put(skb, datalen);

The root cause is that the bond_alb_xmit in bonding will peek the
destination address in packet via the skb->nh.iph pointer, generally
this will be filled by upper layer network driver, but the packet
generated by pktgen will be sent to device driver so it will need to
set this pointer correctly. The other two pointers are not necessary
for now, they are set to avoid similar problem.

Chen-Li Tien

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-08-08  3:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-22 23:11 [PATCH]pktgen oops when used with balance-tlb bonding Tien ChenLi
2006-07-24  6:35 ` David Miller
2006-08-02 20:38 ` Willy Tarreau
2006-08-07 19:04   ` Tien ChenLi
2006-08-07 19:07     ` Tien ChenLi
2006-08-08  3:51       ` David Miller
2006-08-08  3:49     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox