diff options
author | 2014-07-29 06:09:42 +0900 | |
---|---|---|
committer | 2014-07-29 06:09:42 +0900 | |
commit | 6da287ad0266cca1fa8f88fb8b1c466e8164671f (patch) | |
tree | cfdf86c200bf9f1199c45acf51644fc185c705ec /tools/perf/util/scripting-engines/trace-event-python.c | |
parent | ARM: dts: Add I2S dt node for exynos3250 (diff) | |
parent | ARM: EXYNOS: Move cpufreq and cpuidle device registration to init_machine (diff) | |
download | wireguard-linux-6da287ad0266cca1fa8f88fb8b1c466e8164671f.tar.xz wireguard-linux-6da287ad0266cca1fa8f88fb8b1c466e8164671f.zip |
Merge branch 'v3.17-next/power-exynos' into v3.17-next/dt-samsung-2
Diffstat (limited to 'tools/perf/util/scripting-engines/trace-event-python.c')
-rw-r--r-- | tools/perf/util/scripting-engines/trace-event-python.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/scripting-engines/trace-event-python.c b/tools/perf/util/scripting-engines/trace-event-python.c index cd9774df3750..1c419321f707 100644 --- a/tools/perf/util/scripting-engines/trace-event-python.c +++ b/tools/perf/util/scripting-engines/trace-event-python.c @@ -197,6 +197,7 @@ static void define_event_symbols(struct event_format *event, case PRINT_BSTRING: case PRINT_DYNAMIC_ARRAY: case PRINT_FUNC: + case PRINT_BITMASK: /* we should warn... */ return; } @@ -622,6 +623,7 @@ static int python_generate_script(struct pevent *pevent, const char *outfile) fprintf(ofp, "%s=", f->name); if (f->flags & FIELD_IS_STRING || f->flags & FIELD_IS_FLAG || + f->flags & FIELD_IS_ARRAY || f->flags & FIELD_IS_SYMBOLIC) fprintf(ofp, "%%s"); else if (f->flags & FIELD_IS_SIGNED) |