From: Masami Hiramatsu <mhiramat@kernel.org>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Shuah Khan <skhan@linuxfoundation.org>,
Linux Trace Devel <linux-trace-devel@vger.kernel.org>,
Ingo Molnar <mingo@kernel.org>
Subject: Re: [RFC][PATCH] ftrace/selftests: Add binary test to verify ring buffer timestamps
Date: Wed, 9 Dec 2020 08:39:54 +0900 [thread overview]
Message-ID: <20201209083954.5f7321a7551013aa95c0a459@kernel.org> (raw)
In-Reply-To: <20201208100024.42bbcd23@gandalf.local.home>
On Tue, 8 Dec 2020 10:00:24 -0500
Steven Rostedt <rostedt@goodmis.org> wrote:
> On Tue, 8 Dec 2020 21:14:11 +0900
> Masami Hiramatsu <mhiramat@kernel.org> wrote:
>
> > On Tue, 1 Dec 2020 16:06:56 -0500
> > Steven Rostedt <rostedt@goodmis.org> wrote:
> >
> > > From: Steven Rostedt (VMware) <rostedt@goodmis.org>
> > >
> > > A bug was reported about the ftrace ring buffer going backwards:
> > >
> > > Link: https://lore.kernel.org/r/20201124223917.795844-1-elavila@google.com
> > >
> > > In debugging this code, I wrote a C program that uses libtracefs to enable
> > > all events and function tracing (if it exits), and then read the raw ring
> > > buffer binary data and make sure that all the events never go backwards. If
> > > they do, then it does a dump of the ring buffer sub buffer page and shows
> > > the layout of the events and their deltas.
> > >
> > > This was a very useful tool, and can be used to make sure that the ring
> > > buffer's timestamps are consistently monotonic.
> >
> > Yeah, this sounds good to me.
> >
> > >
> > > Adding this to the ftrace selftests seems to be a way that this can be
> > > tested more often. But this would introduce the first binary code to the
> > > ftracetests.
> >
> > No problem. I think it is better to be placed under ftracetest/bin/ and
> > add a PATH before running testcases.
>
> OK.
>
> >
> > > To make sure that the tests still work on embedded devices (where a
> > > compiler may not even exist), and also since this binary incorporates the
> > > yet-to-be-released libtracefs library, if the make fails, the test exits
> > > with UNTESTED. The UNTESTED is documented as being a place holder which
> > > this would be if the make does not work.
> >
> > Hmm, in some embedded environment, we may not have make nor gcc.
> > So it would be better to be build in the kselftest build process as similar
> > to the other kselftests.
> >
> > What about putting the source code under ftracetest/src/. For the embedded
> > devices, it can be built with cross-tools (and make it static binary if
> > needed) and install it under ftracetest/bin. If we have no cross-build
> > tool etc. we just skip building the binary under ftracetest/bin. And if
> > the testcase finds there is no binary, it just returns UNRESOLVED or UNTESTED.
> >
>
> OK. I'll look at how to make this for both cases (embedded and not).
> Because, my current case is to copy the selftests to the machine and run
> them there. So my use case requires the build to happen at test time. But I
> can make it where it wont build if the binary already exists.
For that case, what about just "make clean" before copy, then the binary
will be removed?
>
> > (currently I returns UNRESOLVED when the test target kmodule is not found)
>
> I used UNTESTED for a couple of reasons. I figured "UNRESOLVED" was for
> lack of kernel features or modules. But this is not a lack of the kernel,
> but a lack of user space. If something in user space is lacking (a tool,
> library, or binary), then I thought UNTESTED would be a better option. But
> if you have a strong opinion on it, I'll change it to UNRESOLVED, otherwise
> I'll keep UNTESTED.
The idea of UNTESTED/UNRESOLVED (and UNSUPPORTED) came from POSIX standard,
it is expained in dejagnu's manual:
https://www.gnu.org/software/dejagnu/manual/A-POSIX-Conforming-Test-Framework.html
In this case, user can build the user space binary for the environment but
does't, so I think UNRESOLVED will fit to that case.
So strictly speaking, UNTESTED is just a placeholder which will be implemented
in the future. (hmm, it will be a good chance to write a document for it)
Thank you,
--
Masami Hiramatsu <mhiramat@kernel.org>
next prev parent reply other threads:[~2020-12-08 23:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-01 21:06 [RFC][PATCH] ftrace/selftests: Add binary test to verify ring buffer timestamps Steven Rostedt
2020-12-08 2:55 ` Steven Rostedt
2020-12-08 12:14 ` Masami Hiramatsu
2020-12-08 15:00 ` Steven Rostedt
2020-12-08 23:39 ` Masami Hiramatsu [this message]
2020-12-09 14:49 ` Steven Rostedt
2020-12-10 2:08 ` Masami Hiramatsu
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=20201209083954.5f7321a7551013aa95c0a459@kernel.org \
--to=mhiramat@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-devel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=rostedt@goodmis.org \
--cc=skhan@linuxfoundation.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).