linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Slavomir Kaslev <slavomir.kaslev@gmail.com>
To: Tzvetomir Stoyanov <tstoyanov@vmware.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
	"linux-trace-devel@vger.kernel.org" 
	<linux-trace-devel@vger.kernel.org>
Subject: Re: [PATCH 5/7] trace-cmd: Added user configured clock to the record context
Date: Tue, 22 Jan 2019 16:14:25 +0200	[thread overview]
Message-ID: <CAE0o1Nua3DKyNAcKSCawpn8ngV7G=DEPTP=e259kOeEB1A8c_Q@mail.gmail.com> (raw)
In-Reply-To: <CACqStoezVCpB9n4GvCZ+LW11QPL4oQbLCfJi1HcOndHJ32Fuig@mail.gmail.com>

On Tue, Jan 22, 2019 at 3:44 PM Tzvetomir Stoyanov <tstoyanov@vmware.com> wrote:
>
> On Mon, Jan 21, 2019 at 11:19 AM Steven Rostedt <rostedt@goodmis.org> wrote:
> >
> > On Wed, 16 Jan 2019 21:18:36 +0200
> > Tzvetomir Stoyanov <tstoyanov@vmware.com> wrote:
> >
> > > Store the user configured clock (if any) in the record context,
> > > struct common_record_context. The clock is going to be used when
> > > synchronizing timestamps with remote tracing machine.
> > > ---
> > >  tracecmd/trace-record.c | 2 ++
> > >  1 file changed, 2 insertions(+)
> > >
> > > diff --git a/tracecmd/trace-record.c b/tracecmd/trace-record.c
> > > index f7349eb..900d0d4 100644
> > > --- a/tracecmd/trace-record.c
> > > +++ b/tracecmd/trace-record.c
> > > @@ -227,6 +227,7 @@ struct common_record_context {
> > >       int topt;
> > >       int do_child;
> > >       int run_command;
> > > +     char *clock;
> > >  };
> > >
> > >  static void add_reset_file(const char *file, const char *val, int prio)
> > > @@ -5183,6 +5184,7 @@ static void parse_record_options(int argc,
> > >                       break;
> > >               case 'C':
> > >                       ctx->instance->clock = optarg;
> > > +                     ctx->clock = optarg;
> >
> > Hmm, this can cause an issue. The first thing I have to ask is, why
> > can't we use ctx->instance->clock. I'm sure the answer is that we are
> > adding more than one clock. But this begs the question, which clock
> > should be use, if there are more than one clock to add?
> >
> > I think this patch is not needed. In the last patch, test if
> > ctx->instance->clock exists, and if not, we search the other instances
> > for a clock to use. Or something else that doesn't make which clock to
> > use ambiguous.
>
> Ok, I'll remove it and will search for the first ctx->instance->clock instead.
> Current algorithm assumes that only one clock is used, and it is the
> same in both
> host and guest contexts. We should think how to handle the case with
> multiple instances,
> each one with different clock. I do not know, how instances are
> written in the trace.dat file,
> is there a different time offset option in the file, per instance ?

Each instance goes into a separate file (by default "trace-$(name).dat").

For guest instances, this command
$ trace-cmd record -A guest0 -e irq -e sched -A guest1 -e irq -e sched

creates two trace files:
-rw-r--r-- 1 4.8M Jan 22 16:06 trace-guest0.dat
-rw-r--r-- 1 7.4M Jan 22 16:06 trace-guest1.dat

Cheers,

- Slavi

  reply	other threads:[~2019-01-22 14:14 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-16 19:18 [PATCH 0/7] trace-cmd [POC]: Timestamps sync using PTP-like algorithm, relying on vsock events Tzvetomir Stoyanov
2019-01-16 19:18 ` [PATCH 1/7] trace-cmd: Implemented new lib API: tracecmd_local_events_system() Tzvetomir Stoyanov
2019-01-21  9:02   ` Steven Rostedt
2019-01-16 19:18 ` [PATCH 2/7] trace-cmd: Added new option in trace.dat file for negative time offsets Tzvetomir Stoyanov
2019-01-21  9:08   ` Steven Rostedt
2019-01-22 13:28     ` Tzvetomir Stoyanov
2019-01-16 19:18 ` [PATCH 3/7] trace-cmd: Fixed logic in tracecmd_read_page_record() Tzvetomir Stoyanov
2019-01-21  9:09   ` Steven Rostedt
2019-01-22 13:36     ` Tzvetomir Stoyanov
2019-01-16 19:18 ` [PATCH 4/7] trace-cmd: Added implementation of htonll() and ntohll() Tzvetomir Stoyanov
2019-01-16 19:18 ` [PATCH 5/7] trace-cmd: Added user configured clock to the record context Tzvetomir Stoyanov
2019-01-21  9:19   ` Steven Rostedt
2019-01-22 13:43     ` Tzvetomir Stoyanov
2019-01-22 14:14       ` Slavomir Kaslev [this message]
2019-01-16 19:18 ` [PATCH 6/7] trace-cmd: Refactored make_instances() and tracecmd_remove_instances() Tzvetomir Stoyanov
2019-01-21  9:13   ` Steven Rostedt
2019-01-16 19:18 ` [PATCH 7/7] trace-cmd [POC]: Implemented timestamps synch PTP-like algorithm, using vsock events Tzvetomir Stoyanov

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='CAE0o1Nua3DKyNAcKSCawpn8ngV7G=DEPTP=e259kOeEB1A8c_Q@mail.gmail.com' \
    --to=slavomir.kaslev@gmail.com \
    --cc=linux-trace-devel@vger.kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=tstoyanov@vmware.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).