From: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
To: rostedt@goodmis.org
Cc: linux-trace-devel@vger.kernel.org
Subject: [PATCH v21 09/13] trace-cmd: Add host trace clock as guest trace argument
Date: Mon, 2 Mar 2020 12:14:00 +0200 [thread overview]
Message-ID: <20200302101404.150035-10-tz.stoyanov@gmail.com> (raw)
In-Reply-To: <20200302101404.150035-1-tz.stoyanov@gmail.com>
When tracing host and guest machines, both should use the same
tracing clock for event timestamps. If a clock is specified
as host tracing argument, with option "-C clock_name", the same
is injected as guest tracing argument. If the user wants to use
different tracing clocks, it can specify it using "-C clock_name"
as guest tracing argument. In that case, the one specified by
the user has higher priority.
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
---
tracecmd/include/trace-local.h | 1 +
tracecmd/trace-record.c | 21 +++++++++++++++++++++
2 files changed, 22 insertions(+)
diff --git a/tracecmd/include/trace-local.h b/tracecmd/include/trace-local.h
index 4f2b5541..dc934f28 100644
--- a/tracecmd/include/trace-local.h
+++ b/tracecmd/include/trace-local.h
@@ -167,6 +167,7 @@ enum buffer_instance_flags {
BUFFER_FL_PROFILE = 1 << 1,
BUFFER_FL_GUEST = 1 << 2,
BUFFER_FL_AGENT = 1 << 3,
+ BUFFER_FL_HAS_CLOCK = 1 << 4,
};
struct func_list {
diff --git a/tracecmd/trace-record.c b/tracecmd/trace-record.c
index 15cae9be..e0b18044 100644
--- a/tracecmd/trace-record.c
+++ b/tracecmd/trace-record.c
@@ -5598,6 +5598,8 @@ static void parse_record_options(int argc,
char *sav;
int name_counter = 0;
int neg_event = 0;
+ struct buffer_instance *instance;
+ bool guest_sync_set = false;
init_common_record_context(ctx, curr_cmd);
@@ -5641,6 +5643,8 @@ static void parse_record_options(int argc,
*/
if (c != 'B' && c != 'A' && is_guest(ctx->instance)) {
add_arg(ctx->instance, c, opts, long_options, optarg);
+ if (c == 'C')
+ ctx->instance->flags |= BUFFER_FL_HAS_CLOCK;
continue;
}
@@ -5755,6 +5759,9 @@ static void parse_record_options(int argc,
break;
case 'C':
ctx->instance->clock = optarg;
+ ctx->instance->flags |= BUFFER_FL_HAS_CLOCK;
+ if (is_top_instance(ctx->instance))
+ guest_sync_set = true;
break;
case 'v':
neg_event = 1;
@@ -5979,6 +5986,20 @@ static void parse_record_options(int argc,
add_argv(instance, "--date", true);
}
}
+ if (guest_sync_set) {
+ /* If -C is specified, prepend clock to all guest VM flags */
+ for_all_instances(instance) {
+ if (top_instance.clock) {
+ if (is_guest(instance) &&
+ !(instance->flags & BUFFER_FL_HAS_CLOCK)) {
+ add_argv(instance,
+ (char *)top_instance.clock,
+ true);
+ add_argv(instance, "-C", true);
+ }
+ }
+ }
+ }
if (!ctx->filtered && ctx->instance->filter_mod)
add_func(&ctx->instance->filter_funcs,
--
2.24.1
next prev parent reply other threads:[~2020-03-02 10:14 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-02 10:13 [PATCH v21 00/13] Timestamp synchronization of host - guest tracing session Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 01/13] trace-cmd: Find and store pids of tasks, which run virtual CPUs of given VM Tzvetomir Stoyanov (VMware)
2020-03-02 16:25 ` Steven Rostedt
2020-03-02 16:33 ` Steven Rostedt
2020-03-02 10:13 ` [PATCH v21 02/13] trace-cmd: Implement new API tracecmd_add_option_v() Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 03/13] trace-cmd: Add new API to generate a unique ID of the tracing session Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 04/13] trace-cmd: Store the session tracing ID in the trace.dat file Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 05/13] trace-cmd: Add definitions of htonll() and ntohll() Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 06/13] trace-cmd: Exchange tracing IDs between host and guest Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 07/13] trace-cmd: Implement new option in trace.dat file: TRACECMD_OPTION_TIME_SHIFT Tzvetomir Stoyanov (VMware)
2020-03-02 10:13 ` [PATCH v21 08/13] trace-cmd: Add guest information in host's trace.dat file Tzvetomir Stoyanov (VMware)
2020-03-02 10:14 ` Tzvetomir Stoyanov (VMware) [this message]
2020-03-02 10:14 ` [PATCH v21 10/13] trace-cmd: Refactor few trace-cmd internal functions Tzvetomir Stoyanov (VMware)
2020-03-02 10:14 ` [PATCH v21 11/13] trace-cmd: Basic infrastructure for host - guest timestamp synchronization Tzvetomir Stoyanov (VMware)
2020-03-02 16:43 ` Steven Rostedt
2020-03-04 9:11 ` Tzvetomir Stoyanov
2020-03-02 10:14 ` [PATCH v21 12/13] trace-cmd: [POC] PTP-like algorithm " Tzvetomir Stoyanov (VMware)
2020-03-02 10:14 ` [PATCH v21 13/13] trace-cmd: Debug scripts for " Tzvetomir Stoyanov (VMware)
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=20200302101404.150035-10-tz.stoyanov@gmail.com \
--to=tz.stoyanov@gmail.com \
--cc=linux-trace-devel@vger.kernel.org \
--cc=rostedt@goodmis.org \
/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).