Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33512
b: refs/heads/master
c: b68a60e
h: refs/heads/master
v: v3
  • Loading branch information
Jim Lewis authored and Jeff Garzik committed Aug 19, 2006
1 parent 6886bbe commit a5603c8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 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: 7e29f8bf39de372e3903a0b12f34285d30a8a244
refs/heads/master: b68a60e598c0d1e738c807c47cb181e8cc52a0d8
12 changes: 7 additions & 5 deletions trunk/drivers/net/spider_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -1611,13 +1611,12 @@ spider_net_open(struct net_device *netdev)
int result;

result = -ENOMEM;
if (spider_net_init_chain(card, &card->tx_chain,
card->descr,
PCI_DMA_TODEVICE, tx_descriptors))
if (spider_net_init_chain(card, &card->tx_chain, card->descr,
PCI_DMA_TODEVICE, card->tx_desc))
goto alloc_tx_failed;
if (spider_net_init_chain(card, &card->rx_chain,
card->descr + tx_descriptors,
PCI_DMA_FROMDEVICE, rx_descriptors))
card->descr + card->rx_desc,
PCI_DMA_FROMDEVICE, card->rx_desc))
goto alloc_rx_failed;

/* allocate rx skbs */
Expand Down Expand Up @@ -2005,6 +2004,9 @@ spider_net_setup_netdev(struct spider_net_card *card)

card->options.rx_csum = SPIDER_NET_RX_CSUM_DEFAULT;

card->tx_desc = tx_descriptors;
card->rx_desc = rx_descriptors;

spider_net_setup_netdev_ops(netdev);

netdev->features = NETIF_F_HW_CSUM | NETIF_F_LLTX;
Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/net/spider_net.h
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,9 @@ struct spider_net_card {
/* for ethtool */
int msg_enable;

int rx_desc;
int tx_desc;

struct spider_net_descr descr[0];
};

Expand Down
13 changes: 13 additions & 0 deletions trunk/drivers/net/spider_net_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,18 @@ spider_net_ethtool_set_tx_csum(struct net_device *netdev, uint32_t data)
return 0;
}

static void
spider_net_ethtool_get_ringparam(struct net_device *netdev,
struct ethtool_ringparam *ering)
{
struct spider_net_card *card = netdev->priv;

ering->tx_max_pending = SPIDER_NET_TX_DESCRIPTORS_MAX;
ering->tx_pending = card->tx_desc;
ering->rx_max_pending = SPIDER_NET_RX_DESCRIPTORS_MAX;
ering->rx_pending = card->rx_desc;
}

struct ethtool_ops spider_net_ethtool_ops = {
.get_settings = spider_net_ethtool_get_settings,
.get_drvinfo = spider_net_ethtool_get_drvinfo,
Expand All @@ -141,5 +153,6 @@ struct ethtool_ops spider_net_ethtool_ops = {
.set_rx_csum = spider_net_ethtool_set_rx_csum,
.get_tx_csum = spider_net_ethtool_get_tx_csum,
.set_tx_csum = spider_net_ethtool_set_tx_csum,
.get_ringparam = spider_net_ethtool_get_ringparam,
};

0 comments on commit a5603c8

Please sign in to comment.