Commit f7e8d57b authored by Chad Dupuis's avatar Chad Dupuis Committed by Martin K. Petersen

scsi: qedf: Move some prints to a debug level so they do not print when no debugging is enabled.

Signed-off-by: default avatarChad Dupuis <chad.dupuis@cavium.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 57a3548a
...@@ -442,7 +442,8 @@ static void qedf_link_update(void *dev, struct qed_link_output *link) ...@@ -442,7 +442,8 @@ static void qedf_link_update(void *dev, struct qed_link_output *link)
qedf_update_link_speed(qedf, link); qedf_update_link_speed(qedf, link);
if (atomic_read(&qedf->dcbx) == QEDF_DCBX_DONE) { if (atomic_read(&qedf->dcbx) == QEDF_DCBX_DONE) {
QEDF_ERR(&(qedf->dbg_ctx), "DCBx done.\n"); QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
"DCBx done.\n");
if (atomic_read(&qedf->link_down_tmo_valid) > 0) if (atomic_read(&qedf->link_down_tmo_valid) > 0)
queue_delayed_work(qedf->link_update_wq, queue_delayed_work(qedf->link_update_wq,
&qedf->link_recovery, 0); &qedf->link_recovery, 0);
...@@ -2155,14 +2156,15 @@ static void qedf_recv_frame(struct qedf_ctx *qedf, ...@@ -2155,14 +2156,15 @@ static void qedf_recv_frame(struct qedf_ctx *qedf,
} }
if (ntoh24(&dest_mac[3]) != ntoh24(fh->fh_d_id)) { if (ntoh24(&dest_mac[3]) != ntoh24(fh->fh_d_id)) {
QEDF_ERR(&(qedf->dbg_ctx), "FC frame d_id mismatch with MAC %pM.\n", QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
dest_mac); "FC frame d_id mismatch with MAC %pM.\n", dest_mac);
return; return;
} }
if (qedf->ctlr.state) { if (qedf->ctlr.state) {
if (!ether_addr_equal(mac, qedf->ctlr.dest_addr)) { if (!ether_addr_equal(mac, qedf->ctlr.dest_addr)) {
QEDF_ERR(&(qedf->dbg_ctx), "Wrong source address mac:%pM dest_addr:%pM.\n", QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
"Wrong source address: mac:%pM dest_addr:%pM.\n",
mac, qedf->ctlr.dest_addr); mac, qedf->ctlr.dest_addr);
kfree_skb(skb); kfree_skb(skb);
return; return;
...@@ -2177,7 +2179,8 @@ static void qedf_recv_frame(struct qedf_ctx *qedf, ...@@ -2177,7 +2179,8 @@ static void qedf_recv_frame(struct qedf_ctx *qedf,
* empty then this is not addressed to our port so simply drop it. * empty then this is not addressed to our port so simply drop it.
*/ */
if (lport->port_id != ntoh24(fh->fh_d_id) && !vn_port) { if (lport->port_id != ntoh24(fh->fh_d_id) && !vn_port) {
QEDF_ERR(&(qedf->dbg_ctx), "Dropping frame due to destination mismatch: lport->port_id=%x fh->d_id=%x.\n", QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
"Dropping frame due to destination mismatch: lport->port_id=%x fh->d_id=%x.\n",
lport->port_id, ntoh24(fh->fh_d_id)); lport->port_id, ntoh24(fh->fh_d_id));
kfree_skb(skb); kfree_skb(skb);
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment