]> git.baikalelectronics.ru Git - kernel.git/commit
branch-check: fix long->int truncation when profiling branches
authorMikulas Patocka <mpatocka@redhat.com>
Wed, 30 May 2018 12:19:22 +0000 (08:19 -0400)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Mon, 4 Jun 2018 21:28:20 +0000 (17:28 -0400)
commitb33d4ee2ba8304c4cd62eb49db0a8f81441e64ed
treef05eb8233131e271c1844dd17c8053e450d607b7
parentb7e84a89ac2d456604d79c1f9b3537381fbb3251
branch-check: fix long->int truncation when profiling branches

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 <mingo@redhat.com>
Cc: stable@vger.kernel.org
Fixes: bea630e8811c5 ("tracing: profile likely and unlikely annotations")
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
include/linux/compiler.h