aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools
diff options
context:
space:
mode:
authorDarren Hart (VMware) <dvhart@infradead.org>2017-04-17 15:30:28 -0700
committerDarren Hart (VMware) <dvhart@infradead.org>2017-04-17 15:30:28 -0700
commit86074b85c48cc9c821aa6197306d307d314c0063 (patch)
tree3a3a31d0cd8ccd4d8a162f5bcd28e44fe89e059d /tools
parentplatform/x86: hp-wmi: Fix detection for dock and tablet mode (diff)
parenti2c: core: Allow drivers to disable i2c-core irq mapping (diff)
downloadwireguard-linux-86074b85c48cc9c821aa6197306d307d314c0063.tar.xz
wireguard-linux-86074b85c48cc9c821aa6197306d307d314c0063.zip
Merge branch 'i2c/for-INT33FE'
Merge branch 'i2c/for-INT33FE' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git to prepare for an incoming INT33FE driver. Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/symbol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
index 70e389bc4af7..9b4d8ba22fed 100644
--- a/tools/perf/util/symbol.c
+++ b/tools/perf/util/symbol.c
@@ -202,7 +202,7 @@ void symbols__fixup_end(struct rb_root *symbols)
/* Last entry */
if (curr->end == curr->start)
- curr->end = roundup(curr->start, 4096);
+ curr->end = roundup(curr->start, 4096) + 4096;
}
void __map_groups__fixup_end(struct map_groups *mg, enum map_type type)