diff options
Diffstat (limited to 'drivers/net/ethernet/cisco/enic/enic_ethtool.c')
| -rw-r--r-- | drivers/net/ethernet/cisco/enic/enic_ethtool.c | 24 | 
1 files changed, 4 insertions, 20 deletions
| diff --git a/drivers/net/ethernet/cisco/enic/enic_ethtool.c b/drivers/net/ethernet/cisco/enic/enic_ethtool.c index ebd5c2cf1efe..4d8e0aa447fb 100644 --- a/drivers/net/ethernet/cisco/enic/enic_ethtool.c +++ b/drivers/net/ethernet/cisco/enic/enic_ethtool.c @@ -147,7 +147,6 @@ static void enic_get_drvinfo(struct net_device *netdev,  		return;  	strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); -	strlcpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version));  	strlcpy(drvinfo->fw_version, fw_info->fw_version,  		sizeof(drvinfo->fw_version));  	strlcpy(drvinfo->bus_info, pci_name(enic->pdev), @@ -324,25 +323,6 @@ static int enic_coalesce_valid(struct enic *enic,  	u32 rx_coalesce_usecs_low = min_t(u32, coalesce_usecs_max,  					  ec->rx_coalesce_usecs_low); -	if (ec->rx_max_coalesced_frames		|| -	    ec->rx_coalesce_usecs_irq		|| -	    ec->rx_max_coalesced_frames_irq	|| -	    ec->tx_max_coalesced_frames		|| -	    ec->tx_coalesce_usecs_irq		|| -	    ec->tx_max_coalesced_frames_irq	|| -	    ec->stats_block_coalesce_usecs	|| -	    ec->use_adaptive_tx_coalesce	|| -	    ec->pkt_rate_low			|| -	    ec->rx_max_coalesced_frames_low	|| -	    ec->tx_coalesce_usecs_low		|| -	    ec->tx_max_coalesced_frames_low	|| -	    ec->pkt_rate_high			|| -	    ec->rx_max_coalesced_frames_high	|| -	    ec->tx_coalesce_usecs_high		|| -	    ec->tx_max_coalesced_frames_high	|| -	    ec->rate_sample_interval) -		return -EINVAL; -  	if ((vnic_dev_get_intr_mode(enic->vdev) != VNIC_DEV_INTR_MODE_MSIX) &&  	    ec->tx_coalesce_usecs)  		return -EINVAL; @@ -636,6 +616,10 @@ static int enic_get_ts_info(struct net_device *netdev,  }  static const struct ethtool_ops enic_ethtool_ops = { +	.supported_coalesce_params = ETHTOOL_COALESCE_USECS | +				     ETHTOOL_COALESCE_USE_ADAPTIVE_RX | +				     ETHTOOL_COALESCE_RX_USECS_LOW | +				     ETHTOOL_COALESCE_RX_USECS_HIGH,  	.get_drvinfo = enic_get_drvinfo,  	.get_msglevel = enic_get_msglevel,  	.set_msglevel = enic_set_msglevel, |