From: David Miller <davem@davemloft.net>
Date: Wed, 11 Mar 2009 21:17:06 -0700 (PDT)
Actually that won't work since, as you suggest, skb->len
isn't updated by skb_padto().
So the transmit needs something like:
pktlen = (skb->len > ETH_ZLEN ? : ETH_ZLEN);
velocity_free_tx_buf() needs to make the same calculation
instead of just plain skb->len
This bug probably exists in every other driver using
skb_padto() :-)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html