Commit 342cb7eb authored by John Garry's avatar John Garry Committed by Arnaldo Carvalho de Melo

perf jevents: Fix some would-be warnings

Before enabling warnings through HOSTCFLAGS, fix the would-be warnings:

    HOSTCC  pmu-events/jevents.o
  pmu-events/jevents.c:74:22: warning: no previous prototype for ‘convert’ [-Wmissing-prototypes]
     74 | enum aggr_mode_class convert(const char *aggr_mode)
        |                      ^~~~~~~
  pmu-events/jevents.c: In function ‘print_events_table_entry’:
  pmu-events/jevents.c:373:8: warning: declaration of ‘topic’ shadows a global declaration [-Wshadow]
    373 |  char *topic = pd->topic;
        |        ^~~~~
  pmu-events/jevents.c:316:14: note: shadowed declaration is here
    316 | static char *topic;
        |              ^~~~~
  pmu-events/jevents.c: In function ‘json_events’:
  pmu-events/jevents.c:554:9: warning: declaration of ‘func’ shadows a global declaration [-Wshadow]
    554 |   int (*func)(void *data, struct json_event *je),
        |   ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  pmu-events/jevents.c:85:15: note: shadowed declaration is here
     85 | typedef int (*func)(void *data, struct json_event *je);
        |               ^~~~
  pmu-events/jevents.c: In function ‘main’:
  pmu-events/jevents.c:1211:25: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
   1211 |  char *err_string_ext = "";
        |                         ^~
  pmu-events/jevents.c:1304:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
   1304 |  err_string_ext = " for std arch event";
        |                 ^
Signed-off-by: default avatarJohn Garry <john.garry@huawei.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: James Clark <james.clark@arm.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/1634807805-40093-2-git-send-email-john.garry@huawei.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent d4145960
...@@ -71,7 +71,7 @@ struct json_event { ...@@ -71,7 +71,7 @@ struct json_event {
char *metric_constraint; char *metric_constraint;
}; };
enum aggr_mode_class convert(const char *aggr_mode) static enum aggr_mode_class convert(const char *aggr_mode)
{ {
if (!strcmp(aggr_mode, "PerCore")) if (!strcmp(aggr_mode, "PerCore"))
return PerCore; return PerCore;
...@@ -82,8 +82,6 @@ enum aggr_mode_class convert(const char *aggr_mode) ...@@ -82,8 +82,6 @@ enum aggr_mode_class convert(const char *aggr_mode)
return -1; return -1;
} }
typedef int (*func)(void *data, struct json_event *je);
static LIST_HEAD(sys_event_tables); static LIST_HEAD(sys_event_tables);
struct sys_event_table { struct sys_event_table {
...@@ -370,7 +368,7 @@ static int print_events_table_entry(void *data, struct json_event *je) ...@@ -370,7 +368,7 @@ static int print_events_table_entry(void *data, struct json_event *je)
{ {
struct perf_entry_data *pd = data; struct perf_entry_data *pd = data;
FILE *outfp = pd->outfp; FILE *outfp = pd->outfp;
char *topic = pd->topic; char *topic_local = pd->topic;
/* /*
* TODO: Remove formatting chars after debugging to reduce * TODO: Remove formatting chars after debugging to reduce
...@@ -385,7 +383,7 @@ static int print_events_table_entry(void *data, struct json_event *je) ...@@ -385,7 +383,7 @@ static int print_events_table_entry(void *data, struct json_event *je)
fprintf(outfp, "\t.desc = \"%s\",\n", je->desc); fprintf(outfp, "\t.desc = \"%s\",\n", je->desc);
if (je->compat) if (je->compat)
fprintf(outfp, "\t.compat = \"%s\",\n", je->compat); fprintf(outfp, "\t.compat = \"%s\",\n", je->compat);
fprintf(outfp, "\t.topic = \"%s\",\n", topic); fprintf(outfp, "\t.topic = \"%s\",\n", topic_local);
if (je->long_desc && je->long_desc[0]) if (je->long_desc && je->long_desc[0])
fprintf(outfp, "\t.long_desc = \"%s\",\n", je->long_desc); fprintf(outfp, "\t.long_desc = \"%s\",\n", je->long_desc);
if (je->pmu) if (je->pmu)
...@@ -1208,7 +1206,7 @@ int main(int argc, char *argv[]) ...@@ -1208,7 +1206,7 @@ int main(int argc, char *argv[])
const char *arch; const char *arch;
const char *output_file; const char *output_file;
const char *start_dirname; const char *start_dirname;
char *err_string_ext = ""; const char *err_string_ext = "";
struct stat stbuf; struct stat stbuf;
prog = basename(argv[0]); prog = basename(argv[0]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment