]> git.baikalelectronics.ru Git - kernel.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)
commit350d524d7afc0c2ce28147c89b59b1b7c4a1a42b
tree01122e232159dcb976ca8f06d51d74d408492728
parent5d8d98a5c91b0b3eb920f0d631e0da4d71da1d42
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