GNU Linux-libre 4.9.309-gnu1
[releases.git] / tools / perf / arch / s390 / util / machine.c
1 #include <unistd.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include "util.h"
5 #include "machine.h"
6 #include "api/fs/fs.h"
7 #include "debug.h"
8
9 int arch__fix_module_text_start(u64 *start, u64 *size, const char *name)
10 {
11         u64 m_start = *start;
12         char path[PATH_MAX];
13
14         snprintf(path, PATH_MAX, "module/%.*s/sections/.text",
15                                 (int)strlen(name) - 2, name + 1);
16         if (sysfs__read_ull(path, (unsigned long long *)start) < 0) {
17                 pr_debug2("Using module %s start:%#lx\n", path, m_start);
18                 *start = m_start;
19         } else {
20                 /* Successful read of the modules segment text start address.
21                  * Calculate difference between module start address
22                  * in memory and module text segment start address.
23                  * For example module load address is 0x3ff8011b000
24                  * (from /proc/modules) and module text segment start
25                  * address is 0x3ff8011b870 (from file above).
26                  *
27                  * Adjust the module size and subtract the GOT table
28                  * size located at the beginning of the module.
29                  */
30                 *size -= (*start - m_start);
31         }
32
33         return 0;
34 }