diff options
| author | Wang Wensheng <wangwensheng4@huawei.com> | 2022-11-09 09:44:32 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-11-25 17:35:40 +0100 |
| commit | 763a09994d00e0a8cf5572d92034cbe1e92134b4 (patch) | |
| tree | c1a25a9ce74a8548b14796bc977182e8f0b721a3 | |
| parent | d7bbdb3ae4d63166a0a9fd4d12467ed29dbf4c05 (diff) | |
| download | linux-763a09994d00e0a8cf5572d92034cbe1e92134b4.tar.gz linux-763a09994d00e0a8cf5572d92034cbe1e92134b4.tar.bz2 linux-763a09994d00e0a8cf5572d92034cbe1e92134b4.zip | |
ftrace: Fix the possible incorrect kernel message
commit 08948caebe93482db1adfd2154eba124f66d161d 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: 5821e1b74f0d0 ("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>
| -rw-r--r-- | kernel/trace/ftrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 7ffb9f122555..e42e01b609be 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c @@ -5177,7 +5177,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; |
