]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
perf daemon: Fix the build on more 32-bit architectures
authorArnaldo Carvalho de Melo <acme@kernel.org>
Tue, 20 Aug 2024 00:43:01 +0000 (21:43 -0300)
committerNamhyung Kim <namhyung@kernel.org>
Mon, 2 Sep 2024 18:59:24 +0000 (11:59 -0700)
FYI: I'm carrying this on perf-tools-next.

The previous attempt fixed the build on debian:experimental-x-mipsel,
but when building on a larger set of containers I noticed it broke the
build on some other 32-bit architectures such as:

  42     7.87 ubuntu:18.04-x-arm            : FAIL gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04)
    builtin-daemon.c: In function 'cmd_session_list':
    builtin-daemon.c:692:16: error: format '%llu' expects argument of type 'long long unsigned int', but argument 4 has type 'long int' [-Werror=format=]
       fprintf(out, "%c%" PRIu64,
                    ^~~~~
    builtin-daemon.c:694:13:
        csv_sep, (curr - daemon->start) / 60);
                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    In file included from builtin-daemon.c:3:0:
    /usr/arm-linux-gnueabihf/include/inttypes.h:105:34: note: format string is defined here
     # define PRIu64  __PRI64_PREFIX "u"

So lets cast that time_t (32-bit/64-bit) to uint64_t to make sure it
builds everywhere.

Fixes: 4bbe6002931954bb ("perf daemon: Fix the build on 32-bit architectures")
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Link: https://lore.kernel.org/r/ZsPmldtJ0D9Cua9_@x1
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/builtin-daemon.c

index 5c9335fff2d396b435ba877b82c2494e049858ea..9a95871afc9556045c8bc119164baef170aa57a5 100644 (file)
@@ -691,7 +691,7 @@ static int cmd_session_list(struct daemon *daemon, union cmd *cmd, FILE *out)
 
                fprintf(out, "%c%" PRIu64,
                        /* session up time */
-                       csv_sep, (curr - daemon->start) / 60);
+                       csv_sep, (uint64_t)((curr - daemon->start) / 60));
 
                fprintf(out, "\n");
        } else {
@@ -702,7 +702,7 @@ static int cmd_session_list(struct daemon *daemon, union cmd *cmd, FILE *out)
                        fprintf(out, "  lock:    %s/lock\n",
                                daemon->base);
                        fprintf(out, "  up:      %" PRIu64 " minutes\n",
-                               (curr - daemon->start) / 60);
+                               (uint64_t)((curr - daemon->start) / 60));
                }
        }
 
@@ -730,7 +730,7 @@ static int cmd_session_list(struct daemon *daemon, union cmd *cmd, FILE *out)
 
                        fprintf(out, "%c%" PRIu64,
                                /* session up time */
-                               csv_sep, (curr - session->start) / 60);
+                               csv_sep, (uint64_t)((curr - session->start) / 60));
 
                        fprintf(out, "\n");
                } else {
@@ -747,7 +747,7 @@ static int cmd_session_list(struct daemon *daemon, union cmd *cmd, FILE *out)
                        fprintf(out, "  ack:     %s/%s\n",
                                session->base, SESSION_ACK);
                        fprintf(out, "  up:      %" PRIu64 " minutes\n",
-                               (curr - session->start) / 60);
+                               (uint64_t)((curr - session->start) / 60));
                }
        }