[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <OSAPR01MB75677A8532242F986A967C9DE3059@OSAPR01MB7567.jpnprd01.prod.outlook.com>
Date: Fri, 4 Mar 2022 11:00:28 +0800
From: Shangyan Zhou <sy.zhou@...mail.com>
To: netdev@...r.kernel.org
Cc: leon@...nel.org, Shangyan Zhou <sy.zhou@...mail.com>
Subject: [PATCH v2] rdma: Fix res_print_uint()
Print unsigned int64 should use print_color_u64() and fmt string should be "%" PRIu64.
Signed-off-by: Shangyan Zhou <sy.zhou@...mail.com>
---
rdma/res.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rdma/res.c b/rdma/res.c
index 21fef9bd..1af61aa6 100644
--- a/rdma/res.c
+++ b/rdma/res.c
@@ -214,7 +214,7 @@ void res_print_uint(struct rd *rd, const char *name, uint64_t val,
if (!nlattr)
return;
print_color_uint(PRINT_ANY, COLOR_NONE, name, name, val);
- print_color_uint(PRINT_FP, COLOR_NONE, NULL, " %d ", val);
+ print_color_u64(PRINT_FP, COLOR_NONE, NULL, " %" PRIu64 " ", val);
}
RES_FUNC(res_no_args, RDMA_NLDEV_CMD_RES_GET, NULL, true, 0);
--
2.20.1
Powered by blists - more mailing lists