Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35310
b: refs/heads/master
c: 188f4af
h: refs/heads/master
v: v3
  • Loading branch information
Francois Romieu committed Aug 31, 2006
1 parent 6031b9d commit 459721b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcf0bf90cd9e9242b66e0563b6a8c8db2e4c262c
refs/heads/master: 188f4af04618b32b8ec7c630a3f18201c81ce70c
4 changes: 2 additions & 2 deletions trunk/drivers/net/r8169.c
Original file line number Diff line number Diff line change
Expand Up @@ -2277,7 +2277,7 @@ static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)
dma_addr_t mapping;
u32 status, len;
u32 opts1;
int ret = 0;
int ret = NETDEV_TX_OK;

if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
if (netif_msg_drv(tp)) {
Expand Down Expand Up @@ -2342,7 +2342,7 @@ static int rtl8169_start_xmit(struct sk_buff *skb, struct net_device *dev)

err_stop:
netif_stop_queue(dev);
ret = 1;
ret = NETDEV_TX_BUSY;
err_update_stats:
tp->stats.tx_dropped++;
goto out;
Expand Down

0 comments on commit 459721b

Please sign in to comment.