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

Commit 4d277125 authored by Vasundhara Volam's avatar Vasundhara Volam Committed by David S. Miller
Browse files

be2net: Don't log "Out of MCCQ wrbs" error



Don't log "Out of MCCQ wrbs" msg. When the driver doesn't receive any
response from the FW it already logs a "FW not responding" message.
The driver runs out of MCCQ wrbs much later. Also, this message can
swamp the kernel log in HW/FW error scenarios.

Signed-off-by: default avatarVasundhara Volam <vasundhara.volam@emulex.com>
Signed-off-by: default avatarSathya Perla <sathya.perla@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 94d73aaa
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -687,10 +687,8 @@ static struct be_mcc_wrb *wrb_from_mccq(struct be_adapter *adapter)
	if (!mccq->created)
		return NULL;

	if (atomic_read(&mccq->used) >= mccq->len) {
		dev_err(&adapter->pdev->dev, "Out of MCCQ wrbs\n");
	if (atomic_read(&mccq->used) >= mccq->len)
		return NULL;
	}

	wrb = queue_head_node(mccq);
	queue_head_inc(mccq);