]> git.baikalelectronics.ru Git - kernel.git/commitdiff
ftrace: Fix the possible incorrect kernel message
authorWang Wensheng <wangwensheng4@huawei.com>
Wed, 9 Nov 2022 09:44:32 +0000 (09:44 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Nov 2022 16:42:17 +0000 (17:42 +0100)
commit b139a4e5d356e9e02640d0c7b0130db15bff131b upstream.

If the number of mcount entries is an integer multiple of
ENTRIES_PER_PAGE, the page count showing on the console would be wrong.

Link: https://lkml.kernel.org/r/20221109094434.84046-2-wangwensheng4@huawei.com
Cc: <mhiramat@kernel.org>
Cc: <mark.rutland@arm.com>
Cc: stable@vger.kernel.org
Fixes: a916ff4f3a69e ("function tracing: fix wrong pos computing when read buffer has been fulfilled")
Signed-off-by: Wang Wensheng <wangwensheng4@huawei.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/trace/ftrace.c

index 5374ee664ed325eeee4bf784e38abc0aa01bcdb5..dbf69b7de0de64ce50722e9a894e9e277657ee0a 100644 (file)
@@ -6259,7 +6259,7 @@ void __init ftrace_init(void)
        }
 
        pr_info("ftrace: allocating %ld entries in %ld pages\n",
-               count, count / ENTRIES_PER_PAGE + 1);
+               count, DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
 
        last_ftrace_enabled = ftrace_enabled = 1;