Skip to content

Commit

Permalink
sc92031: start transmit return value bugfix
Browse files Browse the repository at this point in the history
Any negative return value from start_xmit is interpreted as NETDEV_TX_LOCK
which is not what this driver wants. It should return 0 (NETDEV_TX_OK)
when it consumes a packet.

Also, use skb_padto() as the generic way to pad small frames.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed Apr 17, 2008
1 parent 9c28eae commit 26a17b7
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions drivers/net/sc92031.c
Original file line number Diff line number Diff line change
Expand Up @@ -947,24 +947,23 @@ static struct net_device_stats *sc92031_get_stats(struct net_device *dev)

static int sc92031_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
int err = 0;
struct sc92031_priv *priv = netdev_priv(dev);
void __iomem *port_base = priv->port_base;

unsigned len;
unsigned entry;
u32 tx_status;

if (skb_padto(skb, ETH_ZLEN))
return NETDEV_TX_OK;

if (unlikely(skb->len > TX_BUF_SIZE)) {
err = -EMSGSIZE;
dev->stats.tx_dropped++;
goto out;
}

spin_lock(&priv->lock);

if (unlikely(!netif_carrier_ok(dev))) {
err = -ENOLINK;
dev->stats.tx_dropped++;
goto out_unlock;
}
Expand All @@ -976,11 +975,6 @@ static int sc92031_start_xmit(struct sk_buff *skb, struct net_device *dev)
skb_copy_and_csum_dev(skb, priv->tx_bufs + entry * TX_BUF_SIZE);

len = skb->len;
if (unlikely(len < ETH_ZLEN)) {
memset(priv->tx_bufs + entry * TX_BUF_SIZE + len,
0, ETH_ZLEN - len);
len = ETH_ZLEN;
}

wmb();

Expand All @@ -1007,7 +1001,7 @@ static int sc92031_start_xmit(struct sk_buff *skb, struct net_device *dev)
out:
dev_kfree_skb(skb);

return err;
return NETDEV_TX_OK;
}

static int sc92031_open(struct net_device *dev)
Expand Down

0 comments on commit 26a17b7

Please sign in to comment.