selftests/bpf: Fix test_progs compilation failure in 32-bit arch
authorYang Jihong <yangjihong1@huawei.com>
Tue, 8 Nov 2022 01:58:57 +0000 (09:58 +0800)
committerMartin KaFai Lau <martin.lau@kernel.org>
Wed, 9 Nov 2022 20:49:45 +0000 (12:49 -0800)
test_progs fails to be compiled in the 32-bit arch, log is as follows:

  test_progs.c:1013:52: error: format '%ld' expects argument of type 'long int', but argument 3 has type 'size_t' {aka 'unsigned int'} [-Werror=format=]
   1013 |                 sprintf(buf, "MSG_TEST_LOG (cnt: %ld, last: %d)",
        |                                                  ~~^
        |                                                    |
        |                                                    long int
        |                                                  %d
   1014 |                         strlen(msg->test_log.log_buf),
        |                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        |                         |
        |                         size_t {aka unsigned int}

Fix it.

Fixes: 91b2c0afd00c ("selftests/bpf: Add parallelism to test_progs")
Signed-off-by: Yang Jihong <yangjihong1@huawei.com>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/r/20221108015857.132457-1-yangjihong1@huawei.com
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
tools/testing/selftests/bpf/test_progs.c

index 0e9a47f978908d5fef7f79aa3f9ec5be53aa6b64..3fef451d88313ff91496ba3dccda5b88345575cb 100644 (file)
@@ -1010,7 +1010,7 @@ static inline const char *str_msg(const struct msg *msg, char *buf)
                        msg->subtest_done.have_log);
                break;
        case MSG_TEST_LOG:
-               sprintf(buf, "MSG_TEST_LOG (cnt: %ld, last: %d)",
+               sprintf(buf, "MSG_TEST_LOG (cnt: %zu, last: %d)",
                        strlen(msg->test_log.log_buf),
                        msg->test_log.is_last);
                break;