LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Jiri Olsa <jolsa@redhat.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: linux-kernel@vger.kernel.org, Ingo Molnar <mingo@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Jiri Olsa <jolsa@kernel.org>,
Arnaldo Carvalho de Melo <acme@redhat.com>,
Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
Namhyung Kim <namhyung@kernel.org>
Subject: Re: [PATCH 5/5] perf: Make perf aware of tracefs
Date: Mon, 26 Jan 2015 09:57:37 +0100 [thread overview]
Message-ID: <20150126085737.GB13287@krava.brq.redhat.com> (raw)
In-Reply-To: <20150125143151.4c42c836@gandalf.local.home>
On Sun, Jan 25, 2015 at 02:31:51PM -0500, Steven Rostedt wrote:
> On Sun, 25 Jan 2015 18:34:33 +0100
> Jiri Olsa <jolsa@redhat.com> wrote:
>
> > On Sat, Jan 24, 2015 at 01:13:35PM -0500, Steven Rostedt wrote:
> >
> > SNIP
> >
> > > @@ -351,11 +385,15 @@ const char *find_tracing_dir(void)
> > > if (tracing_found)
> > > return tracing;
> > >
> > > - debugfs = find_debugfs();
> > > - if (!debugfs)
> > > - return NULL;
> > > + debugfs = find_tracefs();
> > > + if (!debugfs) {
> > > + tracing_dir = "/tracing";
> > > + debugfs = find_debugfs();
> > > + if (!debugfs)
> > > + return NULL;
> >
> > so this pattern 'try tracefs, if that does not work try debugfs'
> > is all over the patch.. how about we add new new 'virtual' fs to
> > encapsulate that, like:
> >
> > with followign interface:
> > bool tpfs_configured(void);
> > const char *tpfs_find_mountpoint(void);
> > int tpfs_valid_mountpoint(const char *debugfs);
> > char *tpfs_mount(const char *mountpoint);
> > extern char tpfs_mountpoint[];
> >
> > It does not neceserily needs to reside in tools/lib/api/fs/tpfs.[ch],
> > but I believe we need some form of encapsulation for this.
>
> I did it this way because perf had no encapsulation for finding debugfs
> paths. I made the change in trace-cmd in one location. Perf does it a
> little different in each place. I have no idea why there was more than
> one location slapping on "/tracing".
>
> I'd like to get tracefs into perf before doing any redesign of perf's
> infrastructure. That could come later as a cleanup.
>
> This is not a fast path, it wont hurt performance. I agree it should be
> encapsulated, but that's going outside of the scope of this patch
> series, which is only to add awareness to tracefs, not to clean up
> perf's access to the debugfs/tracing directory.
sure, np.. it could be taken care of later
jirka
prev parent reply other threads:[~2015-01-26 8:57 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-24 18:13 [PATCH 0/5] perf: Have perf become tracefs aware Steven Rostedt
2015-01-24 18:13 ` [PATCH 1/5] tools lib fs: Add helper to find mounted file systems Steven Rostedt
2015-01-25 16:41 ` Jiri Olsa
2015-01-25 19:20 ` Steven Rostedt
2015-01-24 18:13 ` [PATCH 2/5] tools lib api fs: Add tracefs mount helper functions Steven Rostedt
2015-01-25 16:45 ` Jiri Olsa
2015-01-25 19:22 ` Steven Rostedt
2015-01-25 16:51 ` Jiri Olsa
2015-01-25 19:24 ` Steven Rostedt
2015-01-25 16:56 ` Jiri Olsa
2015-01-25 19:26 ` Steven Rostedt
2015-01-26 9:02 ` Jiri Olsa
2015-01-26 14:26 ` Steven Rostedt
2015-01-26 14:31 ` Jiri Olsa
2015-01-26 14:44 ` Arnaldo Carvalho de Melo
2015-01-24 18:13 ` [PATCH 3/5] tools lib api fs: Add DEBUGFS_DEFAULT_PATH macro Steven Rostedt
2015-01-24 18:13 ` [PATCH 4/5] tools lib api fs: Add {tracefs,debugfs}_configured() functions Steven Rostedt
2015-01-25 17:02 ` Jiri Olsa
2015-01-25 19:27 ` Steven Rostedt
2015-01-24 18:13 ` [PATCH 5/5] perf: Make perf aware of tracefs Steven Rostedt
2015-01-25 13:50 ` Namhyung Kim
2015-01-25 19:19 ` Steven Rostedt
2015-01-25 17:34 ` Jiri Olsa
2015-01-25 19:31 ` Steven Rostedt
2015-01-26 8:57 ` Jiri Olsa [this message]
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=20150126085737.GB13287@krava.brq.redhat.com \
--to=jolsa@redhat.com \
--cc=acme@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
--cc=rostedt@goodmis.org \
--subject='Re: [PATCH 5/5] perf: Make perf aware of tracefs' \
/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
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).