Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78d0b11d authored by Suresh Reddy's avatar Suresh Reddy Committed by David S. Miller
Browse files

be2net: Avoid diagnostic test in certain versions of firmware to avoid NIC freeze.

parent 18fb06a1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -755,6 +755,12 @@ be_self_test(struct net_device *netdev, struct ethtool_test *test, u64 *data)
	int status;
	u8 link_status = 0;

	if (adapter->function_caps & BE_FUNCTION_CAPS_SUPER_NIC) {
		dev_err(&adapter->pdev->dev, "Self test not supported\n");
		test->flags |= ETH_TEST_FL_FAILED;
		return;
	}

	memset(data, 0, sizeof(u64) * ETHTOOL_TESTS_NUM);

	if (test->flags & ETH_TEST_FL_OFFLINE) {