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

Commit fda972f6 authored by Mitch Williams's avatar Mitch Williams Committed by Jeff Kirsher
Browse files

i40e: remove chatty log messages



Don't complain when we disable queues that are already disable, or
enable them when they're already enabled. This removes a bunch of bogus
log messages that we see at every VF reset.

Change-Id: Ia127be572abdccc48a53d8c43f8a07b8bb920de1
Signed-off-by: default avatarMitch Williams <mitch.a.williams@intel.com>
Signed-off-by: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: default avatarKavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 88f6563d
Loading
Loading
Loading
Loading
+5 −15
Original line number Original line Diff line number Diff line
@@ -2990,21 +2990,11 @@ static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
		} while (j-- && ((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT)
		} while (j-- && ((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT)
			       ^ (tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT)) & 1);
			       ^ (tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT)) & 1);


		if (enable) {
		/* Skip if the queue is already in the requested state */
			/* is STAT set ? */
		if (enable && (tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
			if ((tx_reg & I40E_QTX_ENA_QENA_STAT_MASK)) {
				dev_info(&pf->pdev->dev,
					 "Tx %d already enabled\n", i);
			continue;
			continue;
			}
		if (!enable && !(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
		} else {
			/* is !STAT set ? */
			if (!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK)) {
				dev_info(&pf->pdev->dev,
					 "Tx %d already disabled\n", i);
			continue;
			continue;
			}
		}


		/* turn on/off the queue */
		/* turn on/off the queue */
		if (enable)
		if (enable)