From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Ekaterina Tumanova <tumanova@linux.vnet.ibm.com>
Cc: linux-kernel@vger.kernel.org, borntraeger@de.ibm.com,
yarygin@linux.vnet.ibm.com, a.p.zijlstra@chello.nl,
mingo@redhat.com, namhyung@kernel.org, adrian.hunter@intel.com,
wangnan0@huawei.com, naveen.n.rao@linux.vnet.ibm.com,
dsahern@gmail.com, jolsa@kernel.org
Subject: Re: [PATCH 1/2] perf: Refactor vmlinux_path_init
Date: Thu, 26 Nov 2015 16:44:14 -0300 [thread overview]
Message-ID: <20151126194414.GI28162@kernel.org> (raw)
In-Reply-To: <1448469166-61363-2-git-send-email-tumanova@linux.vnet.ibm.com>
Em Wed, Nov 25, 2015 at 05:32:45PM +0100, Ekaterina Tumanova escreveu:
> Refactor vmlinux_path_init function to ease subsequent additions of
> new vmlinux locations.
>
> Signed-off-by: Ekaterina Tumanova <tumanova@linux.vnet.ibm.com>
> Acked-by: Alexander Yarygin <yarygin@linux.vnet.ibm.com>
> ---
> tools/perf/util/symbol.c | 64 +++++++++++++++++++++++++-----------------------
> 1 file changed, 33 insertions(+), 31 deletions(-)
>
> diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
> index cd08027..9335088 100644
> --- a/tools/perf/util/symbol.c
> +++ b/tools/perf/util/symbol.c
> @@ -1860,24 +1860,43 @@ static void vmlinux_path__exit(void)
> zfree(&vmlinux_path);
> }
>
> +static const char * const vmlinux_paths[] = {
> + "vmlinux",
> + "/boot/vmlinux"
> +};
> +
> +static const char * const vmlinux_paths_upd[] = {
> + "/boot/vmlinux-%s",
> + "/usr/lib/debug/boot/vmlinux-%s",
> + "/lib/modules/%s/build/vmlinux",
> + "/usr/lib/debug/lib/modules/%s/vmlinux"
> +};
> +
> +static int vmlinux_path__update(const char *new_entry)
Changing this to vmlinux_path__add().
> +{
> + vmlinux_path[vmlinux_path__nr_entries] = strdup(new_entry);
> + if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> + return -1;
> + ++vmlinux_path__nr_entries;
> +
> + return 0;
> +}
> +
> static int vmlinux_path__init(struct perf_env *env)
> {
> struct utsname uts;
> char bf[PATH_MAX];
> char *kernel_version;
> + unsigned int i;
>
> - vmlinux_path = malloc(sizeof(char *) * 6);
> + vmlinux_path = malloc(sizeof(char *) * (ARRAY_SIZE(vmlinux_paths) +
> + ARRAY_SIZE(vmlinux_paths_upd)));
> if (vmlinux_path == NULL)
> return -1;
>
> - vmlinux_path[vmlinux_path__nr_entries] = strdup("vmlinux");
> - if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> - goto out_fail;
> - ++vmlinux_path__nr_entries;
> - vmlinux_path[vmlinux_path__nr_entries] = strdup("/boot/vmlinux");
> - if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> - goto out_fail;
> - ++vmlinux_path__nr_entries;
> + for (i = 0; i < ARRAY_SIZE(vmlinux_paths); i++)
> + if (vmlinux_path__update(vmlinux_paths[i]) < 0)
> + goto out_fail;
>
> /* only try kernel version if no symfs was given */
> if (symbol_conf.symfs[0] != 0)
> @@ -1892,28 +1911,11 @@ static int vmlinux_path__init(struct perf_env *env)
> kernel_version = uts.release;
> }
>
> - snprintf(bf, sizeof(bf), "/boot/vmlinux-%s", kernel_version);
> - vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
> - if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> - goto out_fail;
> - ++vmlinux_path__nr_entries;
> - snprintf(bf, sizeof(bf), "/usr/lib/debug/boot/vmlinux-%s",
> - kernel_version);
> - vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
> - if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> - goto out_fail;
> - ++vmlinux_path__nr_entries;
> - snprintf(bf, sizeof(bf), "/lib/modules/%s/build/vmlinux", kernel_version);
> - vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
> - if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> - goto out_fail;
> - ++vmlinux_path__nr_entries;
> - snprintf(bf, sizeof(bf), "/usr/lib/debug/lib/modules/%s/vmlinux",
> - kernel_version);
> - vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
> - if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
> - goto out_fail;
> - ++vmlinux_path__nr_entries;
> + for (i = 0; i < ARRAY_SIZE(vmlinux_paths_upd); i++) {
> + snprintf(bf, sizeof(bf), vmlinux_paths_upd[i], kernel_version);
> + if (vmlinux_path__update(bf) < 0)
> + goto out_fail;
> + }
>
> return 0;
>
> --
> 2.3.9
next prev parent reply other threads:[~2015-11-26 19:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-25 16:32 [PATCH 0/2] Enhance the init of vmlinux_path and add new path Ekaterina Tumanova
2015-11-25 16:32 ` [PATCH 1/2] perf: Refactor vmlinux_path_init Ekaterina Tumanova
2015-11-26 7:34 ` Jiri Olsa
2015-11-26 19:44 ` Arnaldo Carvalho de Melo [this message]
2015-11-27 7:46 ` [tip:perf/core] perf symbols: Refactor vmlinux_path__init() to ease path additions tip-bot for Ekaterina Tumanova
2015-11-25 16:32 ` [PATCH 2/2] perf: add the path to vmlinux.debug Ekaterina Tumanova
2015-11-26 7:35 ` Jiri Olsa
2015-11-27 7:46 ` [tip:perf/core] perf symbols: Add " tip-bot for Ekaterina Tumanova
2015-11-26 19:52 ` [PATCH 0/2] Enhance the init of vmlinux_path and add new path Arnaldo Carvalho de Melo
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=20151126194414.GI28162@kernel.org \
--to=acme@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=adrian.hunter@intel.com \
--cc=borntraeger@de.ibm.com \
--cc=dsahern@gmail.com \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=naveen.n.rao@linux.vnet.ibm.com \
--cc=tumanova@linux.vnet.ibm.com \
--cc=wangnan0@huawei.com \
--cc=yarygin@linux.vnet.ibm.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.