Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1728352 > unrolled thread
| Started by | kan.liang@intel.com |
|---|---|
| First post | 2017-09-07 20:00 +0200 |
| Last post | 2017-09-08 16:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH RFC 02/10] perf tools: using scandir to replace readdir kan.liang@intel.com - 2017-09-07 20:00 +0200
Re: [PATCH RFC 02/10] perf tools: using scandir to replace readdir Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-08 16:20 +0200
| From | kan.liang@intel.com |
|---|---|
| Date | 2017-09-07 20:00 +0200 |
| Subject | [PATCH RFC 02/10] perf tools: using scandir to replace readdir |
| Message-ID | <un9fT-3ll-69@gated-at.bofh.it> |
From: Kan Liang <kan.liang@intel.com>
For perf_event__synthesize_threads, perf goes through all proc files
serially by readdir.
scandir did a snapshoot of proc, which is multithreading friendly.
It's possible that some threads which are added during event synthesize.
But the number of lost threads should be small.
They should not impact the final analysis.
Signed-off-by: Kan Liang <kan.liang@intel.com>
---
tools/perf/util/event.c | 45 +++++++++++++++++++++++++--------------------
1 file changed, 25 insertions(+), 20 deletions(-)
diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c
index 1c905ba..17c21ea 100644
--- a/tools/perf/util/event.c
+++ b/tools/perf/util/event.c
@@ -683,12 +683,14 @@ int perf_event__synthesize_threads(struct perf_tool *tool,
bool mmap_data,
unsigned int proc_map_timeout)
{
- DIR *proc;
- char proc_path[PATH_MAX];
- struct dirent *dirent;
union perf_event *comm_event, *mmap_event, *fork_event;
union perf_event *namespaces_event;
+ char proc_path[PATH_MAX];
+ struct dirent **dirent;
int err = -1;
+ char *end;
+ pid_t pid;
+ int n, i;
if (machine__is_default_guest(machine))
return 0;
@@ -712,29 +714,32 @@ int perf_event__synthesize_threads(struct perf_tool *tool,
goto out_free_fork;
snprintf(proc_path, sizeof(proc_path), "%s/proc", machine->root_dir);
- proc = opendir(proc_path);
+ n = scandir(proc_path, &dirent, 0, alphasort);
- if (proc == NULL)
+ if (n < 0)
goto out_free_namespaces;
- while ((dirent = readdir(proc)) != NULL) {
- char *end;
- pid_t pid = strtol(dirent->d_name, &end, 10);
-
- if (*end) /* only interested in proper numerical dirents */
+ for (i = 0; i < n; i++) {
+ if (!isdigit(dirent[i]->d_name[0]))
continue;
- /*
- * We may race with exiting thread, so don't stop just because
- * one thread couldn't be synthesized.
- */
- __event__synthesize_thread(comm_event, mmap_event, fork_event,
- namespaces_event, pid, 1, process,
- tool, machine, mmap_data,
- proc_map_timeout);
- }
+ pid = (pid_t)strtol(dirent[i]->d_name, &end, 10);
+ /* only interested in proper numerical dirents */
+ if (!*end) {
+ /*
+ * We may race with exiting thread, so don't stop just because
+ * one thread couldn't be synthesized.
+ */
+ __event__synthesize_thread(comm_event, mmap_event, fork_event,
+ namespaces_event, pid, 1, process,
+ tool, machine, mmap_data,
+ proc_map_timeout);
+ }
+ free(dirent[i]);
+ }
+ free(dirent);
err = 0;
- closedir(proc);
+
out_free_namespaces:
free(namespaces_event);
out_free_fork:
--
2.5.5
[toc] | [next] | [standalone]
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Date | 2017-09-08 16:20 +0200 |
| Message-ID | <unsiu-8c2-15@gated-at.bofh.it> |
| In reply to | #1728352 |
Em Thu, Sep 07, 2017 at 10:55:46AM -0700, kan.liang@intel.com escreveu:
> From: Kan Liang <kan.liang@intel.com>
>
> For perf_event__synthesize_threads, perf goes through all proc files
> serially by readdir.
> scandir did a snapshoot of proc, which is multithreading friendly.
>
> It's possible that some threads which are added during event synthesize.
> But the number of lost threads should be small.
> They should not impact the final analysis.
Looks ok, applied locally, will see how it builds in my containers
tests.
- Arnaldo
> Signed-off-by: Kan Liang <kan.liang@intel.com>
> ---
> tools/perf/util/event.c | 45 +++++++++++++++++++++++++--------------------
> 1 file changed, 25 insertions(+), 20 deletions(-)
>
> diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c
> index 1c905ba..17c21ea 100644
> --- a/tools/perf/util/event.c
> +++ b/tools/perf/util/event.c
> @@ -683,12 +683,14 @@ int perf_event__synthesize_threads(struct perf_tool *tool,
> bool mmap_data,
> unsigned int proc_map_timeout)
> {
> - DIR *proc;
> - char proc_path[PATH_MAX];
> - struct dirent *dirent;
> union perf_event *comm_event, *mmap_event, *fork_event;
> union perf_event *namespaces_event;
> + char proc_path[PATH_MAX];
> + struct dirent **dirent;
> int err = -1;
> + char *end;
> + pid_t pid;
> + int n, i;
>
> if (machine__is_default_guest(machine))
> return 0;
> @@ -712,29 +714,32 @@ int perf_event__synthesize_threads(struct perf_tool *tool,
> goto out_free_fork;
>
> snprintf(proc_path, sizeof(proc_path), "%s/proc", machine->root_dir);
> - proc = opendir(proc_path);
> + n = scandir(proc_path, &dirent, 0, alphasort);
>
> - if (proc == NULL)
> + if (n < 0)
> goto out_free_namespaces;
>
> - while ((dirent = readdir(proc)) != NULL) {
> - char *end;
> - pid_t pid = strtol(dirent->d_name, &end, 10);
> -
> - if (*end) /* only interested in proper numerical dirents */
> + for (i = 0; i < n; i++) {
> + if (!isdigit(dirent[i]->d_name[0]))
> continue;
> - /*
> - * We may race with exiting thread, so don't stop just because
> - * one thread couldn't be synthesized.
> - */
> - __event__synthesize_thread(comm_event, mmap_event, fork_event,
> - namespaces_event, pid, 1, process,
> - tool, machine, mmap_data,
> - proc_map_timeout);
> - }
>
> + pid = (pid_t)strtol(dirent[i]->d_name, &end, 10);
> + /* only interested in proper numerical dirents */
> + if (!*end) {
> + /*
> + * We may race with exiting thread, so don't stop just because
> + * one thread couldn't be synthesized.
> + */
> + __event__synthesize_thread(comm_event, mmap_event, fork_event,
> + namespaces_event, pid, 1, process,
> + tool, machine, mmap_data,
> + proc_map_timeout);
> + }
> + free(dirent[i]);
> + }
> + free(dirent);
> err = 0;
> - closedir(proc);
> +
> out_free_namespaces:
> free(namespaces_event);
> out_free_fork:
> --
> 2.5.5
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web