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

Commit 2384d6aa authored by Dmitry Kravkov's avatar Dmitry Kravkov Committed by David S. Miller
Browse files

bnx2x: fix handling mf storage modes



Since commit a3348722 AFEX FCoE function is continuously reset.
The patch prevents the resetting and removes debug print
to stop garbaging syslog.

Signed-off-by: default avatarDmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: default avatarAriel Elior <ariele@broadcom.com>
Signed-off-by: default avatarEilon Greenstein <eilong@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2efaf5ff
Loading
Loading
Loading
Loading
+7 −3
Original line number Original line Diff line number Diff line
@@ -2957,9 +2957,13 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev)
			skb_shinfo(skb)->nr_frags +
			skb_shinfo(skb)->nr_frags +
			BDS_PER_TX_PKT +
			BDS_PER_TX_PKT +
			NEXT_CNT_PER_TX_PKT(MAX_BDS_PER_TX_PKT))) {
			NEXT_CNT_PER_TX_PKT(MAX_BDS_PER_TX_PKT))) {
		/* Handle special storage cases separately */
		if (txdata->tx_ring_size != 0) {
			BNX2X_ERR("BUG! Tx ring full when queue awake!\n");
			bnx2x_fp_qstats(bp, txdata->parent_fp)->driver_xoff++;
			bnx2x_fp_qstats(bp, txdata->parent_fp)->driver_xoff++;
			netif_tx_stop_queue(txq);
			netif_tx_stop_queue(txq);
		BNX2X_ERR("BUG! Tx ring full when queue awake!\n");
		}

		return NETDEV_TX_BUSY;
		return NETDEV_TX_BUSY;
	}
	}


+1 −1
Original line number Original line Diff line number Diff line
@@ -126,7 +126,7 @@ static inline int bnx2x_exe_queue_add(struct bnx2x *bp,
		/* Check if this request is ok */
		/* Check if this request is ok */
		rc = o->validate(bp, o->owner, elem);
		rc = o->validate(bp, o->owner, elem);
		if (rc) {
		if (rc) {
			BNX2X_ERR("Preamble failed: %d\n", rc);
			DP(BNX2X_MSG_SP, "Preamble failed: %d\n", rc);
			goto free_and_exit;
			goto free_and_exit;
		}
		}
	}
	}