qede: Reduce verbosity of ptp tx timestamp
authorPrabhakar Kushwaha <pkushwaha@marvell.com>
Sat, 30 Apr 2022 01:05:13 +0000 (04:05 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sat, 30 Apr 2022 12:55:03 +0000 (13:55 +0100)
Reduce verbosity of ptp tx timestamp error to reduce excessive log
messages.

Signed-off-by: Manish Chopra <manishc@marvell.com>
Signed-off-by: Alok Prasad <palok@marvell.com>
Signed-off-by: Ariel Elior <aelior@marvell.com>
Signed-off-by: Prabhakar Kushwaha <pkushwaha@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/qede/qede_ptp.c

index 39176e7657676e647853569556ca50a6443bd0fb..c9c8225f04d6e94145f7fb7a7d250b9b9e924c2d 100644 (file)
@@ -496,19 +496,19 @@ void qede_ptp_tx_ts(struct qede_dev *edev, struct sk_buff *skb)
 
        if (test_and_set_bit_lock(QEDE_FLAGS_PTP_TX_IN_PRORGESS,
                                  &edev->flags)) {
-               DP_ERR(edev, "Timestamping in progress\n");
+               DP_VERBOSE(edev, QED_MSG_DEBUG, "Timestamping in progress\n");
                edev->ptp_skip_txts++;
                return;
        }
 
        if (unlikely(!test_bit(QEDE_FLAGS_TX_TIMESTAMPING_EN, &edev->flags))) {
-               DP_ERR(edev,
-                      "Tx timestamping was not enabled, this packet will not be timestamped\n");
+               DP_VERBOSE(edev, QED_MSG_DEBUG,
+                          "Tx timestamping was not enabled, this pkt will not be timestamped\n");
                clear_bit_unlock(QEDE_FLAGS_PTP_TX_IN_PRORGESS, &edev->flags);
                edev->ptp_skip_txts++;
        } else if (unlikely(ptp->tx_skb)) {
-               DP_ERR(edev,
-                      "The device supports only a single outstanding packet to timestamp, this packet will not be timestamped\n");
+               DP_VERBOSE(edev, QED_MSG_DEBUG,
+                          "Device supports a single outstanding pkt to ts, It will not be ts\n");
                clear_bit_unlock(QEDE_FLAGS_PTP_TX_IN_PRORGESS, &edev->flags);
                edev->ptp_skip_txts++;
        } else {