Skip to content

Commit 08948ca

Browse files
Wang Wenshengrostedt
authored andcommitted
ftrace: Fix the possible incorrect kernel message
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: 5821e1b ("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>
1 parent bedf068 commit 08948ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/trace/ftrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7391,7 +7391,7 @@ void __init ftrace_init(void)
73917391
}
73927392

73937393
pr_info("ftrace: allocating %ld entries in %ld pages\n",
7394-
count, count / ENTRIES_PER_PAGE + 1);
7394+
count, DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
73957395

73967396
ret = ftrace_process_locs(NULL,
73977397
__start_mcount_loc,

0 commit comments

Comments
 (0)