mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 08:05:27 +08:00
perf events: Fix mmap offset determination
Fix buggy-looking code which unnecessarily adjusts the file offset
fields read from /proc/*/maps.
This may have gone unnoticed since the offset is usually 0 (and the
logic in util/symbol.c may work incorrectly for other offset values).
Commiter note:
This fixes a bug introduced in 4af8b35
, there is no need to shift pgoff
twice, the show_map_vma routine in fs/proc/task_mmu.c already converts
it from the number of pages to the size in bytes, and that is what
appears in /proc/PID/map.
Cc: Nicolas Pitre <nicolas.pitre@linaro.org>
Cc: Will Deacon <Will.Deacon@arm.com>
LKML-Reference: <1280836116-6654-2-git-send-email-dave.martin@linaro.org>
Signed-off-by: Dave Martin <dave.martin@linaro.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
12a81c8df1
commit
b5a6325464
@ -151,7 +151,6 @@ static int event__synthesize_mmap_events(pid_t pid, pid_t tgid,
|
|||||||
continue;
|
continue;
|
||||||
pbf += n + 3;
|
pbf += n + 3;
|
||||||
if (*pbf == 'x') { /* vm_exec */
|
if (*pbf == 'x') { /* vm_exec */
|
||||||
u64 vm_pgoff;
|
|
||||||
char *execname = strchr(bf, '/');
|
char *execname = strchr(bf, '/');
|
||||||
|
|
||||||
/* Catch VDSO */
|
/* Catch VDSO */
|
||||||
@ -162,12 +161,7 @@ static int event__synthesize_mmap_events(pid_t pid, pid_t tgid,
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
pbf += 3;
|
pbf += 3;
|
||||||
n = hex2u64(pbf, &vm_pgoff);
|
n = hex2u64(pbf, &ev.mmap.pgoff);
|
||||||
/* pgoff is in bytes, not pages */
|
|
||||||
if (n >= 0)
|
|
||||||
ev.mmap.pgoff = vm_pgoff << getpagesize();
|
|
||||||
else
|
|
||||||
ev.mmap.pgoff = 0;
|
|
||||||
|
|
||||||
size = strlen(execname);
|
size = strlen(execname);
|
||||||
execname[size - 1] = '\0'; /* Remove \n */
|
execname[size - 1] = '\0'; /* Remove \n */
|
||||||
|
Loading…
Reference in New Issue
Block a user