be2net: fixes in ethtool selftest
authorAjit Khaparde <ajit.khaparde@emulex.com>
Sun, 20 Feb 2011 11:41:20 +0000 (11:41 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 22 Feb 2011 18:26:45 +0000 (10:26 -0800)
> add missing separator between items in ethtool self_test array
> fix reporting of test resluts when link is down and
  when selftest command fails.

From: Suresh R <suresh.reddy@emulex.com>
Signed-off-by: Ajit Khaparde <ajit.khaparde@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/benet/be_ethtool.c

index 82a9a27..0833cbd 100644 (file)
@@ -127,7 +127,7 @@ static const char et_self_tests[][ETH_GSTRING_LEN] = {
        "MAC Loopback test",
        "PHY Loopback test",
        "External Loopback test",
-       "DDR DMA test"
+       "DDR DMA test",
        "Link test"
 };
 
@@ -642,7 +642,8 @@ be_self_test(struct net_device *netdev, struct ethtool_test *test, u64 *data)
                                &qos_link_speed) != 0) {
                test->flags |= ETH_TEST_FL_FAILED;
                data[4] = -1;
-       } else if (mac_speed) {
+       } else if (!mac_speed) {
+               test->flags |= ETH_TEST_FL_FAILED;
                data[4] = 1;
        }
 }