Re: [PATCH] pktgen: Clone skb to avoid corruption of skbs in ndo_start_xmit methods
From: David Miller <davem@davemloft.net>
Date: 2011-07-22 00:10:07
From: David Miller <davem@davemloft.net>
Date: 2011-07-22 00:10:07
From: Neil Horman <nhorman@tuxdriver.com> Date: Thu, 21 Jul 2011 19:50:49 -0400
I'm happy to go down this route Dave, and agree, its a more solid solution, but I think the problem with it (which Ben may have been alluding to previously) is that pktgen doesn't use dev_queue_xmit or dev_hard_start_xmit to send frames.
Neil, that's THE WHOLE POINT, and HOW MY IDEA WORKS. Pktgen bypasses those functions, so it won't trigger the check and therefore won't trigger making a copy of the SKB, since copying isn't needed. Only layering devices will end up eventually calling into those two functions and trigger the "need to copy because this SKB is pktgen shared" check.