Skip to content

Commit 26e03f8

Browse files
Mikulas Patockagregkh
authored andcommitted
branch-check: fix long->int truncation when profiling branches
commit 2026d35 upstream. The function __builtin_expect returns long type (see the gcc documentation), and so do macros likely and unlikely. Unfortunatelly, when CONFIG_PROFILE_ANNOTATED_BRANCHES is selected, the macros likely and unlikely expand to __branch_check__ and __branch_check__ truncates the long type to int. This unintended truncation may cause bugs in various kernel code (we found a bug in dm-writecache because of it), so it's better to fix __branch_check__ to return long. Link: http://lkml.kernel.org/r/alpine.LRH.2.02.1805300818140.24812@file01.intranet.prod.int.rdu2.redhat.com Cc: Ingo Molnar <[email protected]> Cc: [email protected] Fixes: 1f0d69a ("tracing: profile likely and unlikely annotations") Signed-off-by: Mikulas Patocka <[email protected]> Signed-off-by: Steven Rostedt (VMware) <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 5eff5db commit 26e03f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void ftrace_likely_update(struct ftrace_likely_data *f, int val,
2121
#define unlikely_notrace(x) __builtin_expect(!!(x), 0)
2222

2323
#define __branch_check__(x, expect, is_constant) ({ \
24-
int ______r; \
24+
long ______r; \
2525
static struct ftrace_likely_data \
2626
__attribute__((__aligned__(4))) \
2727
__attribute__((section("_ftrace_annotated_branch"))) \

0 commit comments

Comments
 (0)