[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1421904992-24189-1-git-send-email-wangnan0@huawei.com>
Date: Thu, 22 Jan 2015 13:36:32 +0800
From: Wang Nan <wangnan0@...wei.com>
To: <jolsa@...hat.com>, <rostedt@...dmis.org>
CC: <jeremie.galarneau@...icios.com>, <bigeasy@...utronix.de>,
<lizefan@...wei.com>, <linux-kernel@...r.kernel.org>
Subject: [PATCH RFC 1/2] tools lib traceevent: add priv field to truct format_field.
In https://lkml.org/lkml/2015/1/21/383 , Jiri Olsa gives a suggestion
about changing lib traceevent to solve a bug of perf-convert-to-ctf,
which is related to duplicated field names. I think his suggestion
should be something like this patch.
Signed-off-by: Wang Nan <wangnan0@...wei.com>
---
tools/lib/traceevent/event-parse.c | 2 ++
tools/lib/traceevent/event-parse.h | 2 ++
2 files changed, 4 insertions(+)
diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c
index cf3a44b..5f76003 100644
--- a/tools/lib/traceevent/event-parse.c
+++ b/tools/lib/traceevent/event-parse.c
@@ -5909,6 +5909,8 @@ static void free_format_fields(struct format_field *field)
free(field->type);
free(field->name);
free(field);
+ if (field->destroy_priv)
+ field->destroy_priv(field);
field = next;
}
}
diff --git a/tools/lib/traceevent/event-parse.h b/tools/lib/traceevent/event-parse.h
index 7a3873f..928d801 100644
--- a/tools/lib/traceevent/event-parse.h
+++ b/tools/lib/traceevent/event-parse.h
@@ -190,6 +190,8 @@ struct format_field {
unsigned int arraylen;
unsigned int elementsize;
unsigned long flags;
+ void *priv;
+ void (*destroy_priv)(struct format_field *);
};
struct format {
--
1.8.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists