]> git.baikalelectronics.ru Git - kernel.git/commit
net: add IFF_SKB_TX_SHARED flag to priv_flags
authorNeil Horman <nhorman@tuxdriver.com>
Tue, 26 Jul 2011 06:05:37 +0000 (06:05 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 Jul 2011 05:39:30 +0000 (22:39 -0700)
commit89ee106e9e9209711e28faee4de6f63000b04478
tree41a9c15f75b41657dd5370fe135f16c40b3eab64
parentf52c8d13bd20c0985359d84135c80d6edd8163fd
net: add IFF_SKB_TX_SHARED flag to priv_flags

Pktgen attempts to transmit shared skbs to net devices, which can't be used by
some drivers as they keep state information in skbs.  This patch adds a flag
marking drivers as being able to handle shared skbs in their tx path.  Drivers
are defaulted to being unable to do so, but calling ether_setup enables this
flag, as 90% of the drivers calling ether_setup touch real hardware and can
handle shared skbs.  A subsequent patch will audit drivers to ensure that the
flag is set properly

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Reported-by: Jiri Pirko <jpirko@redhat.com>
CC: Robert Olsson <robert.olsson@its.uu.se>
CC: Eric Dumazet <eric.dumazet@gmail.com>
CC: Alexey Dobriyan <adobriyan@gmail.com>
CC: David S. Miller <davem@davemloft.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/if.h
net/core/pktgen.c
net/ethernet/eth.c