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

Commit 7f20d834 authored by Andrew Lunn's avatar Andrew Lunn Committed by David S. Miller
Browse files

net: dsa: mv88e6xxx: Make VTU miss violations less spammy



VTU miss violations can happen under normal conditions. Don't spam the
kernel log, downgrade the output to debug level only. The statistics
counter will indicate it is happening, if anybody not debugging is
interested.

Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reported-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 65f60e45
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -548,10 +548,11 @@ static irqreturn_t mv88e6xxx_g1_vtu_prob_irq_thread_fn(int irq, void *dev_id)
	}
	}


	if (val & MV88E6XXX_G1_VTU_OP_MISS_VIOLATION) {
	if (val & MV88E6XXX_G1_VTU_OP_MISS_VIOLATION) {
		dev_err_ratelimited(chip->dev, "VTU miss violation for vid %d, source port %d\n",
		dev_dbg_ratelimited(chip->dev, "VTU miss violation for vid %d, source port %d\n",
				    entry.vid, spid);
				    entry.vid, spid);
		chip->ports[spid].vtu_miss_violation++;
		chip->ports[spid].vtu_miss_violation++;
	}
	}

	mutex_unlock(&chip->reg_lock);
	mutex_unlock(&chip->reg_lock);


	return IRQ_HANDLED;
	return IRQ_HANDLED;