tracing: Use str_has_prefix() helper for histogram code
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Thu, 20 Dec 2018 03:38:21 +0000 (22:38 -0500)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Sun, 23 Dec 2018 03:51:01 +0000 (22:51 -0500)
commit754481e6954cbef53f8bc4412ad48dde611e21d3
tree311427797eae5dfd56859c4d80edabe0afe8800e
parent72921427d46bf9731a1ab7864adc64c43dfae29f
tracing: Use str_has_prefix() helper for histogram code

The tracing histogram code contains a lot of instances of the construct:

 strncmp(str, "const", sizeof("const") - 1)

This can be prone to bugs due to typos or bad cut and paste. Use the
str_has_prefix() helper macro instead that removes the need for having two
copies of the constant string.

Cc: Tom Zanussi <tom.zanussi@linux.intel.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/trace_events_hist.c