* [PATCH net-next] Add ethtool -g support to 8139cp
@ 2011-10-05 18:08 Rick Jones
2011-10-05 18:50 ` Ben Hutchings
0 siblings, 1 reply; 4+ messages in thread
From: Rick Jones @ 2011-10-05 18:08 UTC (permalink / raw)
To: netdev
From: Rick Jones <rick.jones2@hp.com>
Add support for reporting ring sizes via ethtool -g to the 8139cp driver.
Signed-off-by: Rick Jones <rick.jones2@hp.com>
---
diff --git a/drivers/net/ethernet/realtek/8139cp.c b/drivers/net/ethernet/realtek/8139cp.c
index c77d5af..1dcfe57 100644
--- a/drivers/net/ethernet/realtek/8139cp.c
+++ b/drivers/net/ethernet/realtek/8139cp.c
@@ -1324,6 +1324,19 @@ static void cp_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info
strcpy (info->bus_info, pci_name(cp->pdev));
}
+static void cp_get_ringparam(struct net_device *dev,
+ struct ethtool_ringparam *ring)
+{
+ ring->rx_max_pending = CP_RX_RING_SIZE;
+ ring->tx_max_pending = CP_TX_RING_SIZE;
+ ring->rx_mini_max_pending = 0;
+ ring->rx_jumbo_max_pending = 0;
+ ring->rx_pending = CP_RX_RING_SIZE;
+ ring->tx_pending = CP_TX_RING_SIZE;
+ ring->rx_mini_pending = 0;
+ ring->rx_jumbo_pending = 0;
+}
+
static int cp_get_regs_len(struct net_device *dev)
{
return CP_REGS_SIZE;
@@ -1525,6 +1538,7 @@ static const struct ethtool_ops cp_ethtool_ops = {
.get_eeprom_len = cp_get_eeprom_len,
.get_eeprom = cp_get_eeprom,
.set_eeprom = cp_set_eeprom,
+ .get_ringparam = cp_get_ringparam,
};
static int cp_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] Add ethtool -g support to 8139cp
2011-10-05 18:08 [PATCH net-next] Add ethtool -g support to 8139cp Rick Jones
@ 2011-10-05 18:50 ` Ben Hutchings
2011-10-05 21:53 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Ben Hutchings @ 2011-10-05 18:50 UTC (permalink / raw)
To: Rick Jones; +Cc: netdev
On Wed, 2011-10-05 at 11:08 -0700, Rick Jones wrote:
> From: Rick Jones <rick.jones2@hp.com>
>
> Add support for reporting ring sizes via ethtool -g to the 8139cp driver.
>
> Signed-off-by: Rick Jones <rick.jones2@hp.com>
>
> ---
>
> diff --git a/drivers/net/ethernet/realtek/8139cp.c b/drivers/net/ethernet/realtek/8139cp.c
> index c77d5af..1dcfe57 100644
> --- a/drivers/net/ethernet/realtek/8139cp.c
> +++ b/drivers/net/ethernet/realtek/8139cp.c
> @@ -1324,6 +1324,19 @@ static void cp_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info
> strcpy (info->bus_info, pci_name(cp->pdev));
> }
>
> +static void cp_get_ringparam(struct net_device *dev,
> + struct ethtool_ringparam *ring)
> +{
> + ring->rx_max_pending = CP_RX_RING_SIZE;
> + ring->tx_max_pending = CP_TX_RING_SIZE;
> + ring->rx_mini_max_pending = 0;
> + ring->rx_jumbo_max_pending = 0;
> + ring->rx_pending = CP_RX_RING_SIZE;
> + ring->tx_pending = CP_TX_RING_SIZE;
> + ring->rx_mini_pending = 0;
> + ring->rx_jumbo_pending = 0;
> +}
You generally don't need to set fields to zero in ethtool 'get'
operations, as the ethtool core will initialise the entire structure to
zero.
Ben.
> static int cp_get_regs_len(struct net_device *dev)
> {
> return CP_REGS_SIZE;
> @@ -1525,6 +1538,7 @@ static const struct ethtool_ops cp_ethtool_ops = {
> .get_eeprom_len = cp_get_eeprom_len,
> .get_eeprom = cp_get_eeprom,
> .set_eeprom = cp_set_eeprom,
> + .get_ringparam = cp_get_ringparam,
> };
>
> static int cp_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] Add ethtool -g support to 8139cp
2011-10-05 18:50 ` Ben Hutchings
@ 2011-10-05 21:53 ` David Miller
2011-10-07 16:38 ` Rick Jones
0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2011-10-05 21:53 UTC (permalink / raw)
To: bhutchings; +Cc: raj, netdev
From: Ben Hutchings <bhutchings@solarflare.com>
Date: Wed, 05 Oct 2011 19:50:48 +0100
> You generally don't need to set fields to zero in ethtool 'get'
> operations, as the ethtool core will initialise the entire structure to
> zero.
Rick, please remove the explicit zero initializations and resubmit,
thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] Add ethtool -g support to 8139cp
2011-10-05 21:53 ` David Miller
@ 2011-10-07 16:38 ` Rick Jones
0 siblings, 0 replies; 4+ messages in thread
From: Rick Jones @ 2011-10-07 16:38 UTC (permalink / raw)
To: David Miller; +Cc: bhutchings, netdev
On 10/05/2011 02:53 PM, David Miller wrote:
> From: Ben Hutchings<bhutchings@solarflare.com>
> Date: Wed, 05 Oct 2011 19:50:48 +0100
>
>> You generally don't need to set fields to zero in ethtool 'get'
>> operations, as the ethtool core will initialise the entire structure to
>> zero.
>
> Rick, please remove the explicit zero initializations and resubmit,
> thanks.
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Ben/Dave
Thanks for the feedback. I'll tweak and resend under separate cover.
rick
simply copying what he saw in e1000_get_ringparm :)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-10-07 16:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-05 18:08 [PATCH net-next] Add ethtool -g support to 8139cp Rick Jones
2011-10-05 18:50 ` Ben Hutchings
2011-10-05 21:53 ` David Miller
2011-10-07 16:38 ` Rick Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).