Commit 5aa0b030 authored by David Ahern's avatar David Ahern Committed by Arnaldo Carvalho de Melo

perf tools: Refactor comm/tgid lookup

Rather than parsing /proc/pid/status file one line at a time, read it
into a buffer in one shot and search for all strings in one pass.

tgid conversion also simplified -- removing the isspace walk. As noted
by Arnaldo those are not needed for atoi == strtol calls.
Signed-off-by: default avatarDavid Ahern <dsahern@gmail.com>
Acked-by: default avatarDon Zickus <dzickus@redhat.com>
Acked-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Joe Mario <jmario@redhat.com>
Link: http://lkml.kernel.org/r/1427747758-18510-1-git-send-email-dsahern@gmail.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 73dbcd65
...@@ -49,48 +49,64 @@ static struct perf_sample synth_sample = { ...@@ -49,48 +49,64 @@ static struct perf_sample synth_sample = {
.period = 1, .period = 1,
}; };
/*
* Assumes that the first 4095 bytes of /proc/pid/stat contains
* the comm and tgid.
*/
static pid_t perf_event__get_comm_tgid(pid_t pid, char *comm, size_t len) static pid_t perf_event__get_comm_tgid(pid_t pid, char *comm, size_t len)
{ {
char filename[PATH_MAX]; char filename[PATH_MAX];
char bf[BUFSIZ]; char bf[4096];
FILE *fp; int fd;
size_t size = 0; size_t size = 0, n;
pid_t tgid = -1; pid_t tgid = -1;
char *nl, *name, *tgids;
snprintf(filename, sizeof(filename), "/proc/%d/status", pid); snprintf(filename, sizeof(filename), "/proc/%d/status", pid);
fp = fopen(filename, "r"); fd = open(filename, O_RDONLY);
if (fp == NULL) { if (fd < 0) {
pr_debug("couldn't open %s\n", filename); pr_debug("couldn't open %s\n", filename);
return 0; return 0;
} }
while (!comm[0] || (tgid < 0)) { n = read(fd, bf, sizeof(bf) - 1);
if (fgets(bf, sizeof(bf), fp) == NULL) { close(fd);
pr_warning("couldn't get COMM and pgid, malformed %s\n", if (n <= 0) {
filename); pr_warning("Couldn't get COMM and tgid for pid %d\n",
break; pid);
return -1;
} }
bf[n] = '\0';
name = strstr(bf, "Name:");
tgids = strstr(bf, "Tgid:");
if (name) {
name += 5; /* strlen("Name:") */
if (memcmp(bf, "Name:", 5) == 0) {
char *name = bf + 5;
while (*name && isspace(*name)) while (*name && isspace(*name))
++name; ++name;
size = strlen(name) - 1;
nl = strchr(name, '\n');
if (nl)
*nl = '\0';
size = strlen(name);
if (size >= len) if (size >= len)
size = len - 1; size = len - 1;
memcpy(comm, name, size); memcpy(comm, name, size);
comm[size] = '\0'; comm[size] = '\0';
} else {
pr_debug("Name: string not found for pid %d\n", pid);
}
} else if (memcmp(bf, "Tgid:", 5) == 0) { if (tgids) {
char *tgids = bf + 5; tgids += 5; /* strlen("Tgid:") */
while (*tgids && isspace(*tgids))
++tgids;
tgid = atoi(tgids); tgid = atoi(tgids);
} else {
pr_debug("Tgid: string not found for pid %d\n", pid);
} }
}
fclose(fp);
return tgid; return tgid;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment