Skip to content

Commit

Permalink
ftrace: Optimize the allocation for mcount entries
Browse files Browse the repository at this point in the history
commit bcea02b096333dc74af987cb9685a4dbdd820840 upstream.

If we can't allocate this size, try something smaller with half of the
size. Its order should be decreased by one instead of divided by two.

Link: https://lkml.kernel.org/r/[email protected]

Cc: <[email protected]>
Cc: <[email protected]>
Cc: [email protected]
Fixes: a790087 ("ftrace: Allocate the mcount record pages as groups")
Signed-off-by: Wang Wensheng <[email protected]>
Signed-off-by: Steven Rostedt (Google) <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Wang Wensheng authored and gregkh committed Nov 25, 2022
1 parent 3041fee commit c50e0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/trace/ftrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -3017,7 +3017,7 @@ static int ftrace_allocate_records(struct ftrace_page *pg, int count)
/* if we can't allocate this size, try something smaller */
if (!order)
return -ENOMEM;
order >>= 1;
order--;
goto again;
}

Expand Down

0 comments on commit c50e0bc

Please sign in to comment.