From: Mark Wu <wudxw@linux.vnet.ibm.com>
To: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Cc: Mark Wu <wudxw@linux.vnet.ibm.com>, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 4/6] trace: Add trace events group implementation in the backend "stderr"
Date: Thu, 13 Oct 2011 01:14:17 +0800 [thread overview]
Message-ID: <1318439659-7525-5-git-send-email-wudxw@linux.vnet.ibm.com> (raw)
In-Reply-To: <1318439659-7525-1-git-send-email-wudxw@linux.vnet.ibm.com>
Signed-off-by: Mark Wu <wudxw@linux.vnet.ibm.com>
---
trace/stderr.c | 32 ++++++++++++++++++++++++++++++++
trace/stderr.h | 7 +++++++
2 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/trace/stderr.c b/trace/stderr.c
index 7107c4a..c409840 100644
--- a/trace/stderr.c
+++ b/trace/stderr.c
@@ -12,6 +12,17 @@ void trace_print_events(FILE *stream, fprintf_function stream_printf)
}
}
+void trace_print_groups(FILE *stream, fprintf_function stream_printf)
+{
+ unsigned int i;
+
+ for (i = 0; i < NR_TRACE_EVENT_GROUPS; i++) {
+ stream_printf(stream, "%s [GROUP ID %u] : state %u\n",
+ trace_group_list[i].gp_name, i,
+ trace_group_list[i].state);
+ }
+}
+
bool trace_event_set_state(const char *name, bool state)
{
unsigned int i;
@@ -25,6 +36,27 @@ bool trace_event_set_state(const char *name, bool state)
return false;
}
+bool trace_event_group_set_state(const char *gp_name, bool state)
+{
+ unsigned int i;
+ unsigned int j;
+ TraceEventGroup *group;
+
+ for (i = 0; i < NR_TRACE_EVENT_GROUPS; i++) {
+
+ group = &trace_group_list[i];
+ if (!strcmp(group->gp_name, gp_name)) {
+ group->state = state;
+
+ for (j = group->start; j <= group->end; j++) {
+ trace_list[j].state = state;
+ }
+ return true;
+ }
+ }
+ return false;
+}
+
bool trace_backend_init(const char *events, const char *file)
{
if (file) {
diff --git a/trace/stderr.h b/trace/stderr.h
index d575b61..45499f6 100644
--- a/trace/stderr.h
+++ b/trace/stderr.h
@@ -8,4 +8,11 @@ typedef struct {
bool state;
} TraceEvent;
+typedef struct {
+ const char *gp_name;
+ bool state;
+ int start;
+ int end;
+} TraceEventGroup;
+
#endif /* ! TRACE_STDERR_H */
--
1.7.1
next prev parent reply other threads:[~2011-10-12 17:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-12 17:14 [Qemu-devel] [PATCH 0/6] trace: Add support for trace events grouping Mark Wu
2011-10-12 17:14 ` [Qemu-devel] [PATCH 1/6] trace: Make "tracetool" generate a group list Mark Wu
2011-10-14 1:48 ` Sheldon
2011-10-12 17:14 ` [Qemu-devel] [PATCH 2/6] trace: Add HMP monitor commands for trace events group Mark Wu
2011-10-12 17:14 ` [Qemu-devel] [PATCH 3/6] trace: Add trace events group implementation in the backend "simple" Mark Wu
2011-10-12 20:46 ` Ryan Harper
2011-10-12 17:14 ` Mark Wu [this message]
2011-10-12 17:14 ` [Qemu-devel] [PATCH 5/6] trace: Enable "-trace events" argument to control initial state of groups Mark Wu
2011-10-12 17:14 ` [Qemu-devel] [PATCH 6/6] trace: Update doc for trace events group Mark Wu
2011-10-13 8:10 ` [Qemu-devel] [PATCH 0/6] trace: Add support for trace events grouping Mark Wu
2011-10-14 12:16 ` Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1318439659-7525-5-git-send-email-wudxw@linux.vnet.ibm.com \
--to=wudxw@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@linux.vnet.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).