diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-28 15:49:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-28 15:49:40 -0500 |
commit | 0191b625ca5a46206d2fb862bb08f36f2fcb3b31 (patch) | |
tree | 454d1842b1833d976da62abcbd5c47521ebe9bd7 /drivers/net/spider_net.c | |
parent | 54a696bd07c14d3b1192d03ce7269bc59b45209a (diff) | |
parent | eb56092fc168bf5af199d47af50c0d84a96db898 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6: (1429 commits)
net: Allow dependancies of FDDI & Tokenring to be modular.
igb: Fix build warning when DCA is disabled.
net: Fix warning fallout from recent NAPI interface changes.
gro: Fix potential use after free
sfc: If AN is enabled, always read speed/duplex from the AN advertising bits
sfc: When disabling the NIC, close the device rather than unregistering it
sfc: SFT9001: Add cable diagnostics
sfc: Add support for multiple PHY self-tests
sfc: Merge top-level functions for self-tests
sfc: Clean up PHY mode management in loopback self-test
sfc: Fix unreliable link detection in some loopback modes
sfc: Generate unique names for per-NIC workqueues
802.3ad: use standard ethhdr instead of ad_header
802.3ad: generalize out mac address initializer
802.3ad: initialize ports LACPDU from const initializer
802.3ad: remove typedef around ad_system
802.3ad: turn ports is_individual into a bool
802.3ad: turn ports is_enabled into a bool
802.3ad: make ntt bool
ixgbe: Fix set_ringparam in ixgbe to use the same memory pools.
...
Fixed trivial IPv4/6 address printing conflicts in fs/cifs/connect.c due
to the conversion to %pI (in this networking merge) and the addition of
doing IPv6 addresses (from the earlier merge of CIFS).
Diffstat (limited to 'drivers/net/spider_net.c')
-rw-r--r-- | drivers/net/spider_net.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/drivers/net/spider_net.c b/drivers/net/spider_net.c index 07599b492359..c5c123d3af57 100644 --- a/drivers/net/spider_net.c +++ b/drivers/net/spider_net.c | |||
@@ -789,7 +789,7 @@ spider_net_set_low_watermark(struct spider_net_card *card) | |||
789 | * spider_net_release_tx_chain releases the tx descriptors that spider has | 789 | * spider_net_release_tx_chain releases the tx descriptors that spider has |
790 | * finished with (if non-brutal) or simply release tx descriptors (if brutal). | 790 | * finished with (if non-brutal) or simply release tx descriptors (if brutal). |
791 | * If some other context is calling this function, we return 1 so that we're | 791 | * If some other context is calling this function, we return 1 so that we're |
792 | * scheduled again (if we were scheduled) and will not loose initiative. | 792 | * scheduled again (if we were scheduled) and will not lose initiative. |
793 | */ | 793 | */ |
794 | static int | 794 | static int |
795 | spider_net_release_tx_chain(struct spider_net_card *card, int brutal) | 795 | spider_net_release_tx_chain(struct spider_net_card *card, int brutal) |
@@ -1302,7 +1302,7 @@ static int spider_net_poll(struct napi_struct *napi, int budget) | |||
1302 | /* if all packets are in the stack, enable interrupts and return 0 */ | 1302 | /* if all packets are in the stack, enable interrupts and return 0 */ |
1303 | /* if not, return 1 */ | 1303 | /* if not, return 1 */ |
1304 | if (packets_done < budget) { | 1304 | if (packets_done < budget) { |
1305 | netif_rx_complete(netdev, napi); | 1305 | netif_rx_complete(napi); |
1306 | spider_net_rx_irq_on(card); | 1306 | spider_net_rx_irq_on(card); |
1307 | card->ignore_rx_ramfull = 0; | 1307 | card->ignore_rx_ramfull = 0; |
1308 | } | 1308 | } |
@@ -1529,8 +1529,7 @@ spider_net_handle_error_irq(struct spider_net_card *card, u32 status_reg, | |||
1529 | spider_net_refill_rx_chain(card); | 1529 | spider_net_refill_rx_chain(card); |
1530 | spider_net_enable_rxdmac(card); | 1530 | spider_net_enable_rxdmac(card); |
1531 | card->num_rx_ints ++; | 1531 | card->num_rx_ints ++; |
1532 | netif_rx_schedule(card->netdev, | 1532 | netif_rx_schedule(&card->napi); |
1533 | &card->napi); | ||
1534 | } | 1533 | } |
1535 | show_error = 0; | 1534 | show_error = 0; |
1536 | break; | 1535 | break; |
@@ -1550,8 +1549,7 @@ spider_net_handle_error_irq(struct spider_net_card *card, u32 status_reg, | |||
1550 | spider_net_refill_rx_chain(card); | 1549 | spider_net_refill_rx_chain(card); |
1551 | spider_net_enable_rxdmac(card); | 1550 | spider_net_enable_rxdmac(card); |
1552 | card->num_rx_ints ++; | 1551 | card->num_rx_ints ++; |
1553 | netif_rx_schedule(card->netdev, | 1552 | netif_rx_schedule(&card->napi); |
1554 | &card->napi); | ||
1555 | show_error = 0; | 1553 | show_error = 0; |
1556 | break; | 1554 | break; |
1557 | 1555 | ||
@@ -1565,8 +1563,7 @@ spider_net_handle_error_irq(struct spider_net_card *card, u32 status_reg, | |||
1565 | spider_net_refill_rx_chain(card); | 1563 | spider_net_refill_rx_chain(card); |
1566 | spider_net_enable_rxdmac(card); | 1564 | spider_net_enable_rxdmac(card); |
1567 | card->num_rx_ints ++; | 1565 | card->num_rx_ints ++; |
1568 | netif_rx_schedule(card->netdev, | 1566 | netif_rx_schedule(&card->napi); |
1569 | &card->napi); | ||
1570 | show_error = 0; | 1567 | show_error = 0; |
1571 | break; | 1568 | break; |
1572 | 1569 | ||
@@ -1660,11 +1657,11 @@ spider_net_interrupt(int irq, void *ptr) | |||
1660 | 1657 | ||
1661 | if (status_reg & SPIDER_NET_RXINT ) { | 1658 | if (status_reg & SPIDER_NET_RXINT ) { |
1662 | spider_net_rx_irq_off(card); | 1659 | spider_net_rx_irq_off(card); |
1663 | netif_rx_schedule(netdev, &card->napi); | 1660 | netif_rx_schedule(&card->napi); |
1664 | card->num_rx_ints ++; | 1661 | card->num_rx_ints ++; |
1665 | } | 1662 | } |
1666 | if (status_reg & SPIDER_NET_TXINT) | 1663 | if (status_reg & SPIDER_NET_TXINT) |
1667 | netif_rx_schedule(netdev, &card->napi); | 1664 | netif_rx_schedule(&card->napi); |
1668 | 1665 | ||
1669 | if (status_reg & SPIDER_NET_LINKINT) | 1666 | if (status_reg & SPIDER_NET_LINKINT) |
1670 | spider_net_link_reset(netdev); | 1667 | spider_net_link_reset(netdev); |