NTB: Rate limit ntb_qp_link_work
authorAllen Hubbe <Allen.Hubbe@emc.com>
Mon, 11 May 2015 14:08:26 +0000 (10:08 -0400)
committerJon Mason <jdmason@kudzu.us>
Sat, 4 Jul 2015 18:08:30 +0000 (14:08 -0400)
When the ntb transport is connecting and waiting for the peer, the debug
console receives lots of debug level messages about the remote qp link
status being down.  Rate limit those messages.

Signed-off-by: Allen Hubbe <Allen.Hubbe@emc.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/ntb_transport.c

index 2efd1ea..8ce0bf6 100644 (file)
@@ -850,7 +850,7 @@ static void ntb_qp_link_work(struct work_struct *work)
 
        /* query remote spad for qp ready bits */
        ntb_peer_spad_read(nt->ndev, QP_LINKS);
-       dev_dbg(&pdev->dev, "Remote QP link status = %x\n", val);
+       dev_dbg_ratelimited(&pdev->dev, "Remote QP link status = %x\n", val);
 
        /* See if the remote side is up */
        if (val & BIT(qp->qp_num)) {