diff options
Diffstat (limited to 'drivers/net/ethernet/sfc/ethtool.c')
| -rw-r--r-- | drivers/net/ethernet/sfc/ethtool.c | 70 | 
1 files changed, 43 insertions, 27 deletions
diff --git a/drivers/net/ethernet/sfc/ethtool.c b/drivers/net/ethernet/sfc/ethtool.c index 5b471cf5c32..74739c4b999 100644 --- a/drivers/net/ethernet/sfc/ethtool.c +++ b/drivers/net/ethernet/sfc/ethtool.c @@ -70,6 +70,7 @@ static const struct efx_sw_stat_desc efx_sw_stat_desc[] = {  	EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers),  	EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets),  	EFX_ETHTOOL_UINT_TXQ_STAT(pushes), +	EFX_ETHTOOL_UINT_TXQ_STAT(pio_packets),  	EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),  	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),  	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err), @@ -250,6 +251,9 @@ static void efx_fill_test(unsigned int test_index, u8 *strings, u64 *data,   * @test_index:		Starting index of the test   * @strings:		Ethtool strings, or %NULL   * @data:		Ethtool test results, or %NULL + * + * Fill in a block of loopback self-test entries.  Return new test + * index.   */  static int efx_fill_loopback_test(struct efx_nic *efx,  				  struct efx_loopback_self_tests *lb_tests, @@ -289,6 +293,12 @@ static int efx_fill_loopback_test(struct efx_nic *efx,   * @tests:		Efx self-test results structure, or %NULL   * @strings:		Ethtool strings, or %NULL   * @data:		Ethtool test results, or %NULL + * + * Get self-test number of strings, strings, and/or test results. + * Return number of strings (== number of test results). + * + * The reason for merging these three functions is to make sure that + * they can never be inconsistent.   */  static int efx_ethtool_fill_self_tests(struct efx_nic *efx,  				       struct efx_self_tests *tests, @@ -317,6 +327,8 @@ static int efx_ethtool_fill_self_tests(struct efx_nic *efx,  			      "eventq.int", NULL);  	} +	efx_fill_test(n++, strings, data, &tests->memory, +		      "core", 0, "memory", NULL);  	efx_fill_test(n++, strings, data, &tests->registers,  		      "core", 0, "registers", NULL); @@ -356,7 +368,8 @@ static int efx_ethtool_get_sset_count(struct net_device *net_dev,  	switch (string_set) {  	case ETH_SS_STATS:  		return efx->type->describe_stats(efx, NULL) + -			EFX_ETHTOOL_SW_STAT_COUNT; +			EFX_ETHTOOL_SW_STAT_COUNT + +			efx_ptp_describe_stats(efx, NULL);  	case ETH_SS_TEST:  		return efx_ethtool_fill_self_tests(efx, NULL, NULL, NULL);  	default: @@ -377,6 +390,8 @@ static void efx_ethtool_get_strings(struct net_device *net_dev,  		for (i = 0; i < EFX_ETHTOOL_SW_STAT_COUNT; i++)  			strlcpy(strings + i * ETH_GSTRING_LEN,  				efx_sw_stat_desc[i].name, ETH_GSTRING_LEN); +		strings += EFX_ETHTOOL_SW_STAT_COUNT * ETH_GSTRING_LEN; +		efx_ptp_describe_stats(efx, strings);  		break;  	case ETH_SS_TEST:  		efx_ethtool_fill_self_tests(efx, NULL, strings, NULL); @@ -426,8 +441,11 @@ static void efx_ethtool_get_stats(struct net_device *net_dev,  			break;  		}  	} +	data += EFX_ETHTOOL_SW_STAT_COUNT;  	spin_unlock_bh(&efx->stats_lock); + +	efx_ptp_update_stats(efx, data);  }  static void efx_ethtool_self_test(struct net_device *net_dev, @@ -435,7 +453,7 @@ static void efx_ethtool_self_test(struct net_device *net_dev,  {  	struct efx_nic *efx = netdev_priv(net_dev);  	struct efx_self_tests *efx_tests; -	int already_up; +	bool already_up;  	int rc = -ENOMEM;  	efx_tests = kzalloc(sizeof(*efx_tests), GFP_KERNEL); @@ -443,8 +461,8 @@ static void efx_ethtool_self_test(struct net_device *net_dev,  		goto fail;  	if (efx->state != STATE_READY) { -		rc = -EIO; -		goto fail1; +		rc = -EBUSY; +		goto out;  	}  	netif_info(efx, drv, efx->net_dev, "starting %sline testing\n", @@ -457,7 +475,7 @@ static void efx_ethtool_self_test(struct net_device *net_dev,  		if (rc) {  			netif_err(efx, drv, efx->net_dev,  				  "failed opening device.\n"); -			goto fail1; +			goto out;  		}  	} @@ -470,8 +488,7 @@ static void efx_ethtool_self_test(struct net_device *net_dev,  		   rc == 0 ? "passed" : "failed",  		   (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on"); -fail1: -	/* Fill ethtool results structures */ +out:  	efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);  	kfree(efx_tests);  fail: @@ -582,7 +599,7 @@ static void efx_ethtool_get_ringparam(struct net_device *net_dev,  	struct efx_nic *efx = netdev_priv(net_dev);  	ring->rx_max_pending = EFX_MAX_DMAQ_SIZE; -	ring->tx_max_pending = EFX_MAX_DMAQ_SIZE; +	ring->tx_max_pending = EFX_TXQ_MAX_ENT(efx);  	ring->rx_pending = efx->rxq_entries;  	ring->tx_pending = efx->txq_entries;  } @@ -595,7 +612,7 @@ static int efx_ethtool_set_ringparam(struct net_device *net_dev,  	if (ring->rx_mini_pending || ring->rx_jumbo_pending ||  	    ring->rx_pending > EFX_MAX_DMAQ_SIZE || -	    ring->tx_pending > EFX_MAX_DMAQ_SIZE) +	    ring->tx_pending > EFX_TXQ_MAX_ENT(efx))  		return -EINVAL;  	if (ring->rx_pending < EFX_RXQ_MIN_ENT) { @@ -682,7 +699,6 @@ static void efx_ethtool_get_pauseparam(struct net_device *net_dev,  	pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);  } -  static void efx_ethtool_get_wol(struct net_device *net_dev,  				struct ethtool_wolinfo *wol)  { @@ -711,7 +727,7 @@ static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)  }  /* MAC address mask including only I/G bit */ -static const u8 mac_addr_ig_mask[ETH_ALEN] = { 0x01, 0, 0, 0, 0, 0 }; +static const u8 mac_addr_ig_mask[ETH_ALEN] __aligned(2) = {0x01, 0, 0, 0, 0, 0};  #define IP4_ADDR_FULL_MASK	((__force __be32)~0)  #define PORT_FULL_MASK		((__force __be16)~0) @@ -771,16 +787,16 @@ static int efx_ethtool_get_class_rule(struct efx_nic *efx,  		rule->flow_type = ETHER_FLOW;  		if (spec.match_flags &  		    (EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG)) { -			memcpy(mac_entry->h_dest, spec.loc_mac, ETH_ALEN); +			ether_addr_copy(mac_entry->h_dest, spec.loc_mac);  			if (spec.match_flags & EFX_FILTER_MATCH_LOC_MAC) -				memset(mac_mask->h_dest, ~0, ETH_ALEN); +				eth_broadcast_addr(mac_mask->h_dest);  			else -				memcpy(mac_mask->h_dest, mac_addr_ig_mask, -				       ETH_ALEN); +				ether_addr_copy(mac_mask->h_dest, +						mac_addr_ig_mask);  		}  		if (spec.match_flags & EFX_FILTER_MATCH_REM_MAC) { -			memcpy(mac_entry->h_source, spec.rem_mac, ETH_ALEN); -			memset(mac_mask->h_source, ~0, ETH_ALEN); +			ether_addr_copy(mac_entry->h_source, spec.rem_mac); +			eth_broadcast_addr(mac_mask->h_source);  		}  		if (spec.match_flags & EFX_FILTER_MATCH_ETHER_TYPE) {  			mac_entry->h_proto = spec.ether_type; @@ -952,13 +968,13 @@ static int efx_ethtool_set_class_rule(struct efx_nic *efx,  				spec.match_flags |= EFX_FILTER_MATCH_LOC_MAC;  			else  				return -EINVAL; -			memcpy(spec.loc_mac, mac_entry->h_dest, ETH_ALEN); +			ether_addr_copy(spec.loc_mac, mac_entry->h_dest);  		}  		if (!is_zero_ether_addr(mac_mask->h_source)) {  			if (!is_broadcast_ether_addr(mac_mask->h_source))  				return -EINVAL;  			spec.match_flags |= EFX_FILTER_MATCH_REM_MAC; -			memcpy(spec.rem_mac, mac_entry->h_source, ETH_ALEN); +			ether_addr_copy(spec.rem_mac, mac_entry->h_source);  		}  		if (mac_mask->h_proto) {  			if (mac_mask->h_proto != ETHER_TYPE_FULL_MASK) @@ -1017,7 +1033,7 @@ static u32 efx_ethtool_get_rxfh_indir_size(struct net_device *net_dev)  		0 : ARRAY_SIZE(efx->rx_indir_table));  } -static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir) +static int efx_ethtool_get_rxfh(struct net_device *net_dev, u32 *indir, u8 *key)  {  	struct efx_nic *efx = netdev_priv(net_dev); @@ -1025,18 +1041,18 @@ static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir)  	return 0;  } -static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev, -				      const u32 *indir) +static int efx_ethtool_set_rxfh(struct net_device *net_dev, +				const u32 *indir, const u8 *key)  {  	struct efx_nic *efx = netdev_priv(net_dev);  	memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table)); -	efx_nic_push_rx_indir_table(efx); +	efx->type->rx_push_rss_config(efx);  	return 0;  } -int efx_ethtool_get_ts_info(struct net_device *net_dev, -			    struct ethtool_ts_info *ts_info) +static int efx_ethtool_get_ts_info(struct net_device *net_dev, +				   struct ethtool_ts_info *ts_info)  {  	struct efx_nic *efx = netdev_priv(net_dev); @@ -1109,8 +1125,8 @@ const struct ethtool_ops efx_ethtool_ops = {  	.get_rxnfc		= efx_ethtool_get_rxnfc,  	.set_rxnfc		= efx_ethtool_set_rxnfc,  	.get_rxfh_indir_size	= efx_ethtool_get_rxfh_indir_size, -	.get_rxfh_indir		= efx_ethtool_get_rxfh_indir, -	.set_rxfh_indir		= efx_ethtool_set_rxfh_indir, +	.get_rxfh		= efx_ethtool_get_rxfh, +	.set_rxfh		= efx_ethtool_set_rxfh,  	.get_ts_info		= efx_ethtool_get_ts_info,  	.get_module_info	= efx_ethtool_get_module_info,  	.get_module_eeprom	= efx_ethtool_get_module_eeprom,  | 
