public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jiri Olsa <jolsa@redhat.com>
To: Richard Yao <ryao@gentoo.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Paul Mackerras <paulus@samba.org>,
	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
	Adrian Hunter <adrian.hunter@intel.com>,
	David Ahern <dsahern@gmail.com>,
	Stephane Eranian <eranian@google.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	linux-kernel@vger.kernel.org, Namhyung Kim <namhyung@kernel.org>
Subject: Re: [PATCH] perf machine: Search for modules in %s/lib/modules/%s
Date: Tue, 29 Apr 2014 10:06:17 +0200	[thread overview]
Message-ID: <20140429080617.GA26967@krava.brq.redhat.com> (raw)
In-Reply-To: <20140427100556.GB1111@krava.brq.redhat.com>

On Sun, Apr 27, 2014 at 12:05:56PM +0200, Jiri Olsa wrote:
> On Sat, Apr 26, 2014 at 01:17:55PM -0400, Richard Yao wrote:
> > Modules installed outside of the kernel's build system should go into
> > "%s/lib/modules/%s/extra", but at present, perf will only look at them
> > when they are in "%s/lib/modules/%s/kernel". Lets encourage good
> > citizenship by relaxing this requirement to "%s/lib/modules/%s". This
> > way open source modules that are out-of-tree have no incentive to start
> > populating a directory reserved for in-kernel modules and I can stop
> > hex-editing my system's perf binary when profiling OSS out-of-tree
> > modules.
> > 
> > Feedback from Namhyung Kim correctly revealed that the hex-edits that I
> > had been doing meant that perf was also traversing the build and source
> > symlinks in %s/lib/modules/%s. That is undesireable, so we explicitly
> > exclude them from traversal with a minor tweak to the traversal routine.
> 
> looks good to me, Namhyung?

just realized Namhyung wasn't CC-ed on this one ;-)

jirka

> 
> thanks,
> jirka
> 
> > 
> > Signed-off-by: Richard Yao <ryao@gentoo.org>
> > ---
> >  tools/perf/util/machine.c | 16 ++++++++++++----
> >  1 file changed, 12 insertions(+), 4 deletions(-)
> > 
> > diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c
> > index a53cd0b..27c2a5e 100644
> > --- a/tools/perf/util/machine.c
> > +++ b/tools/perf/util/machine.c
> > @@ -717,7 +717,7 @@ static char *get_kernel_version(const char *root_dir)
> >  }
> >  
> >  static int map_groups__set_modules_path_dir(struct map_groups *mg,
> > -				const char *dir_name)
> > +				const char *dir_name, int depth)
> >  {
> >  	struct dirent *dent;
> >  	DIR *dir = opendir(dir_name);
> > @@ -742,7 +742,15 @@ static int map_groups__set_modules_path_dir(struct map_groups *mg,
> >  			    !strcmp(dent->d_name, ".."))
> >  				continue;
> >  
> > -			ret = map_groups__set_modules_path_dir(mg, path);
> > +			/* Do not follow top-level source and build symlinks */
> > +			if (depth == 0) {
> > +				if (!strcmp(dent->d_name, "source") ||
> > +				    !strcmp(dent->d_name, "build"))
> > +					continue;
> > +			}
> > +
> > +			ret = map_groups__set_modules_path_dir(mg, path,
> > +							       depth + 1);
> >  			if (ret < 0)
> >  				goto out;
> >  		} else {
> > @@ -786,11 +794,11 @@ static int machine__set_modules_path(struct machine *machine)
> >  	if (!version)
> >  		return -1;
> >  
> > -	snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s/kernel",
> > +	snprintf(modules_path, sizeof(modules_path), "%s/lib/modules/%s",
> >  		 machine->root_dir, version);
> >  	free(version);
> >  
> > -	return map_groups__set_modules_path_dir(&machine->kmaps, modules_path);
> > +	return map_groups__set_modules_path_dir(&machine->kmaps, modules_path, 0);
> >  }
> >  
> >  static int machine__create_module(void *arg, const char *name, u64 start)
> > -- 
> > 1.8.3.2
> > 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

  reply	other threads:[~2014-04-29  8:06 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-26 17:17 [PATCH] perf machine: Search for modules in %s/lib/modules/%s Richard Yao
2014-04-27 10:05 ` Jiri Olsa
2014-04-29  8:06   ` Jiri Olsa [this message]
2014-04-29 23:46     ` Namhyung Kim
2014-05-01  6:32 ` [tip:perf/core] perf machine: Search for modules in %s/lib/ modules/%s tip-bot for Richard Yao
  -- strict thread matches above, loose matches on Subject: below --
2014-04-10 16:52 [PATCH] perf machine: Search for modules in %s/lib/modules/%s Richard Yao
2014-04-11 17:19 ` David Ahern
2014-04-15  5:44 ` Namhyung Kim
2014-04-15 11:56   ` Jiri Olsa
2014-04-26 17:20     ` Richard Yao

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=20140429080617.GA26967@krava.brq.redhat.com \
    --to=jolsa@redhat.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@ghostprotocols.net \
    --cc=adrian.hunter@intel.com \
    --cc=dsahern@gmail.com \
    --cc=eranian@google.com \
    --cc=fweisbec@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namhyung@kernel.org \
    --cc=paulus@samba.org \
    --cc=ryao@gentoo.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