]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
selftests: net: Fix printf format warnings on arm
authorMasami Hiramatsu <mhiramat@kernel.org>
Wed, 23 Oct 2019 04:58:07 +0000 (13:58 +0900)
committerShuah Khan <skhan@linuxfoundation.org>
Thu, 7 Nov 2019 21:54:08 +0000 (14:54 -0700)
Fix printf format warnings on arm (and other 32bit arch).

 - udpgso.c and udpgso_bench_tx use %lu for size_t but it
   should be unsigned long long on 32bit arch.

 - so_txtime.c uses %ld for int64_t, but it should be
   unsigned long long on 32bit arch.

Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Willem de Bruijn <willemb@google.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/net/so_txtime.c
tools/testing/selftests/net/udpgso.c
tools/testing/selftests/net/udpgso_bench_tx.c

index 53f598f0664709583caaf99d42b34c32a1134ceb..34df4c8882afb2d539c28f3fe3e2404b7833a18f 100644 (file)
@@ -105,8 +105,8 @@ static void do_recv_one(int fdr, struct timed_send *ts)
        tstop = (gettime_ns() - glob_tstart) / 1000;
        texpect = ts->delay_us >= 0 ? ts->delay_us : 0;
 
-       fprintf(stderr, "payload:%c delay:%ld expected:%ld (us)\n",
-                       rbuf[0], tstop, texpect);
+       fprintf(stderr, "payload:%c delay:%lld expected:%lld (us)\n",
+                       rbuf[0], (long long)tstop, (long long)texpect);
 
        if (rbuf[0] != ts->data)
                error(1, 0, "payload mismatch. expected %c", ts->data);
index b8265ee9923f2b11af7884d365b2e5af9323ff3a..cab334e51ac104a894112382e5aeea85bdb003c4 100644 (file)
@@ -448,7 +448,8 @@ static bool __send_one(int fd, struct msghdr *msg, int flags)
        if (ret == -1)
                error(1, errno, "sendmsg");
        if (ret != msg->msg_iov->iov_len)
-               error(1, 0, "sendto: %d != %lu", ret, msg->msg_iov->iov_len);
+               error(1, 0, "sendto: %d != %llu", ret,
+                       (unsigned long long)msg->msg_iov->iov_len);
        if (msg->msg_flags)
                error(1, 0, "sendmsg: return flags 0x%x\n", msg->msg_flags);
 
index ada99496634aa31547e817a791d0471724dd4173..17512a43885e7a29af80e7930a4debd8421ceee8 100644 (file)
@@ -405,7 +405,8 @@ static int send_udp_segment(int fd, char *data)
        if (ret == -1)
                error(1, errno, "sendmsg");
        if (ret != iov.iov_len)
-               error(1, 0, "sendmsg: %u != %lu\n", ret, iov.iov_len);
+               error(1, 0, "sendmsg: %u != %llu\n", ret,
+                       (unsigned long long)iov.iov_len);
 
        return 1;
 }