]> asedeno.scripts.mit.edu Git - linux.git/commit
ftrace: Drop a VLA in module_exists()
authorSalvatore Mesoraca <s.mesoraca16@gmail.com>
Fri, 30 Mar 2018 08:53:08 +0000 (10:53 +0200)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Fri, 6 Apr 2018 12:56:48 +0000 (08:56 -0400)
commit419e9fe53b7941481941984ce271b0ce946c3914
tree01122e232159dcb976ca8f06d51d74d408492728
parent913ea4d0b1074bac4c42a43ac1677dc56bbbcc52
ftrace: Drop a VLA in module_exists()

Avoid a VLA by using a real constant expression instead of a variable.
The compiler should be able to optimize the original code and avoid using
an actual VLA. Anyway this change is useful because it will avoid a false
positive with -Wvla, it might also help the compiler generating better
code.

Link: http://lkml.kernel.org/r/CA+55aFzCG-zNmZwX4A2FQpadafLfEzK6CC=qPXydAacU1RqZWA@mail.gmail.com
Link: http://lkml.kernel.org/r/1522399988-8815-1-git-send-email-s.mesoraca16@gmail.com
Signed-off-by: Salvatore Mesoraca <s.mesoraca16@gmail.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/ftrace.c