Commit 11e66966 authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller

sfc: Specify a meaningful component for loopback RX-side and PHY tests

Our ethtool self-test result names each begin with a component name.  For
some results this is "port0", which is not very meaningful.  Change that
to "rx" or "phy" as appropriate.
Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b4531938
...@@ -274,8 +274,11 @@ static void efx_fill_test(unsigned int test_index, ...@@ -274,8 +274,11 @@ static void efx_fill_test(unsigned int test_index,
/* Fill string, if applicable */ /* Fill string, if applicable */
if (strings) { if (strings) {
snprintf(unit_str.name, sizeof(unit_str.name), if (strchr(unit_format, '%'))
unit_format, unit_id); snprintf(unit_str.name, sizeof(unit_str.name),
unit_format, unit_id);
else
strcpy(unit_str.name, unit_format);
snprintf(test_str.name, sizeof(test_str.name), snprintf(test_str.name, sizeof(test_str.name),
test_format, test_id); test_format, test_id);
snprintf(strings[test_index].name, snprintf(strings[test_index].name,
...@@ -284,7 +287,6 @@ static void efx_fill_test(unsigned int test_index, ...@@ -284,7 +287,6 @@ static void efx_fill_test(unsigned int test_index,
} }
} }
#define EFX_PORT_NAME "port%d", 0
#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel #define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue #define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue #define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
...@@ -320,11 +322,11 @@ static int efx_fill_loopback_test(struct efx_nic *efx, ...@@ -320,11 +322,11 @@ static int efx_fill_loopback_test(struct efx_nic *efx,
} }
efx_fill_test(test_index++, strings, data, efx_fill_test(test_index++, strings, data,
&lb_tests->rx_good, &lb_tests->rx_good,
EFX_PORT_NAME, "rx", 0,
EFX_LOOPBACK_NAME(mode, "rx_good")); EFX_LOOPBACK_NAME(mode, "rx_good"));
efx_fill_test(test_index++, strings, data, efx_fill_test(test_index++, strings, data,
&lb_tests->rx_bad, &lb_tests->rx_bad,
EFX_PORT_NAME, "rx", 0,
EFX_LOOPBACK_NAME(mode, "rx_bad")); EFX_LOOPBACK_NAME(mode, "rx_bad"));
return test_index; return test_index;
...@@ -372,7 +374,7 @@ static int efx_ethtool_fill_self_tests(struct efx_nic *efx, ...@@ -372,7 +374,7 @@ static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
efx_fill_test(n++, strings, data, &tests->registers, efx_fill_test(n++, strings, data, &tests->registers,
"core", 0, "registers", NULL); "core", 0, "registers", NULL);
efx_fill_test(n++, strings, data, &tests->phy, efx_fill_test(n++, strings, data, &tests->phy,
EFX_PORT_NAME, "phy", NULL); "phy", 0, "bist", NULL);
/* Loopback tests */ /* Loopback tests */
for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) { for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment