-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf record: Introduce a symtab cache
Now a cache will be created in a ~/.debug debuginfo like hierarchy, so that at the end of a 'perf record' session all the binaries (with build-ids) involved get collected and indexed by their build-ids, so that perf report can find them. This is interesting when developing software where you want to do a 'perf diff' with the previous build and opens avenues for lots more interesting tools, like a 'perf diff --graph' that takes more than two binaries into account. Tunables for collecting just the symtabs can be added if one doesn't want to have the full binary, but having the full binary allows things like 'perf rerecord' or other tools that can re-run the tests by having access to the exact binary in some perf.data file, so it may well be interesting to keep the full binary there. Space consumption is minimised by trying to use hard links, a 'perf cache' tool to manage the space used, a la ccache is required to purge older entries. With this in place it will be possible also to introduce new commands, 'perf archive' and 'perf restore' (or some more suitable and future proof names) to create a cpio/tar file with the perf data and the files in the cache that _had_ perf hits of interest. There are more aspects to polish, like finding the right vmlinux file to cache, etc, but this is enough for a first step. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frédéric Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <1261957026-15580-10-git-send-email-acme@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
- Loading branch information
Arnaldo Carvalho de Melo
authored and
Ingo Molnar
committed
Dec 28, 2009
1 parent
55aa640
commit 4cf4013
Showing
6 changed files
with
165 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#include <sys/mman.h> | ||
#include <sys/stat.h> | ||
#include <sys/types.h> | ||
#include <fcntl.h> | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include "util.h" | ||
|
||
int mkdir_p(char *path, mode_t mode) | ||
{ | ||
struct stat st; | ||
int err; | ||
char *d = path; | ||
|
||
if (*d != '/') | ||
return -1; | ||
|
||
if (stat(path, &st) == 0) | ||
return 0; | ||
|
||
while (*++d == '/'); | ||
|
||
while ((d = strchr(d, '/'))) { | ||
*d = '\0'; | ||
err = stat(path, &st) && mkdir(path, mode); | ||
*d++ = '/'; | ||
if (err) | ||
return -1; | ||
while (*d == '/') | ||
++d; | ||
} | ||
return (stat(path, &st) && mkdir(path, mode)) ? -1 : 0; | ||
} | ||
|
||
int copyfile(const char *from, const char *to) | ||
{ | ||
int fromfd, tofd; | ||
struct stat st; | ||
void *addr; | ||
int err = -1; | ||
|
||
if (stat(from, &st)) | ||
goto out; | ||
|
||
fromfd = open(from, O_RDONLY); | ||
if (fromfd < 0) | ||
goto out; | ||
|
||
tofd = creat(to, 0755); | ||
if (tofd < 0) | ||
goto out_close_from; | ||
|
||
addr = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fromfd, 0); | ||
if (addr == MAP_FAILED) | ||
goto out_close_to; | ||
|
||
if (write(tofd, addr, st.st_size) == st.st_size) | ||
err = 0; | ||
|
||
munmap(addr, st.st_size); | ||
out_close_to: | ||
close(tofd); | ||
if (err) | ||
unlink(to); | ||
out_close_from: | ||
close(fromfd); | ||
out: | ||
return err; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters