Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 135513
b: refs/heads/master
c: 9e669d3
h: refs/heads/master
i:
  135511: e7db628
v: v3
  • Loading branch information
Klaus-Dieter Wacker authored and David S. Miller committed Mar 24, 2009
1 parent 8e8c4e7 commit 152ee89
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: e5b5719b06d3c614e904bc817177bd3c49c52edb
refs/heads/master: 9e669d327a873bbab51e7e95ee9f9c3c49755594
4 changes: 2 additions & 2 deletions trunk/drivers/s390/net/lcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ __lcs_start_xmit(struct lcs_card *card, struct sk_buff *skb,
if (skb == NULL) {
card->stats.tx_dropped++;
card->stats.tx_errors++;
return -EIO;
return 0;
}
if (card->state != DEV_STATE_UP) {
dev_kfree_skb(skb);
Expand All @@ -1587,7 +1587,7 @@ __lcs_start_xmit(struct lcs_card *card, struct sk_buff *skb,
card->tx_buffer = lcs_get_buffer(&card->write);
if (card->tx_buffer == NULL) {
card->stats.tx_dropped++;
rc = -EBUSY;
rc = NETDEV_TX_BUSY;
goto out;
}
card->tx_buffer->callback = lcs_txbuffer_cb;
Expand Down

0 comments on commit 152ee89

Please sign in to comment.