net/hns3: log time delta in decimal format
authorChengwen Feng <fengchengwen@huawei.com>
Wed, 28 Apr 2021 07:20:52 +0000 (15:20 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 29 Apr 2021 16:25:40 +0000 (18:25 +0200)
If the reset process cost too much time, driver will log one error
message which formats the time delta, but the formatting is using
hexadecimal which was not readable.

This patch fixes it by formatting in decimal format.

Fixes: 2790c6464725 ("net/hns3: support device reset")
Cc: stable@dpdk.org
Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
drivers/net/hns3/hns3_ethdev.c
drivers/net/hns3/hns3_ethdev_vf.c

index 973384b..02637e4 100644 (file)
@@ -6710,7 +6710,7 @@ hns3_reset_service(void *param)
                msec = tv_delta.tv_sec * MSEC_PER_SEC +
                       tv_delta.tv_usec / USEC_PER_MSEC;
                if (msec > HNS3_RESET_PROCESS_MS)
-                       hns3_err(hw, "%d handle long time delta %" PRIx64
+                       hns3_err(hw, "%d handle long time delta %" PRIu64
                                     " ms time=%ld.%.6ld",
                                 hw->reset.level, msec,
                                 tv.tv_sec, tv.tv_usec);
index 74b90e2..fcdf0e3 100644 (file)
@@ -2782,7 +2782,7 @@ hns3vf_reset_service(void *param)
                msec = tv_delta.tv_sec * MSEC_PER_SEC +
                       tv_delta.tv_usec / USEC_PER_MSEC;
                if (msec > HNS3_RESET_PROCESS_MS)
-                       hns3_err(hw, "%d handle long time delta %" PRIx64
+                       hns3_err(hw, "%d handle long time delta %" PRIu64
                                 " ms time=%ld.%.6ld",
                                 hw->reset.level, msec, tv.tv_sec, tv.tv_usec);
        }