Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46518
b: refs/heads/master
c: 80dab7c
h: refs/heads/master
v: v3
  • Loading branch information
Linas Vepstas authored and Jeff Garzik committed Feb 5, 2007
1 parent bb4da10 commit 4c17647
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 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: 7f7223b8f11f9857fba1dbd5474882219a7ae6e9
refs/heads/master: 80dab7c7e5b7c4e53e9423c22375bfd9cbf7f2c3
13 changes: 4 additions & 9 deletions trunk/drivers/net/spider_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -980,17 +980,11 @@ spider_net_decode_one_descr(struct spider_net_card *card)

status = spider_net_get_descr_status(descr);

/* nothing in the descriptor yet */
if (status == SPIDER_NET_DESCR_CARDOWNED)
/* Nothing in the descriptor, or ring must be empty */
if ((status == SPIDER_NET_DESCR_CARDOWNED) ||
(status == SPIDER_NET_DESCR_NOT_IN_USE))
return 0;

if (status == SPIDER_NET_DESCR_NOT_IN_USE) {
/* not initialized yet, the ring must be empty */
spider_net_refill_rx_chain(card);
spider_net_enable_rxdmac(card);
return 0;
}

/* descriptor definitively used -- move on tail */
chain->tail = descr->next;

Expand Down Expand Up @@ -1074,6 +1068,7 @@ spider_net_poll(struct net_device *netdev, int *budget)
netdev->quota -= packets_done;
*budget -= packets_done;
spider_net_refill_rx_chain(card);
spider_net_enable_rxdmac(card);

/* if all packets are in the stack, enable interrupts and return 0 */
/* if not, return 1 */
Expand Down

0 comments on commit 4c17647

Please sign in to comment.