提交 1bd95be2 编写于 作者: M Matt Helsley 提交者: Steven Rostedt (VMware)

recordmcount: Remove redundant strcmp

The strcmp is unnecessary since .text is already accepted as a
prefix in the strncmp().

Link: http://lkml.kernel.org/r/358e590b49adbe4185e161a8b364e323f3d52857.1563992889.git.mhelsley@vmware.comSigned-off-by: NMatt Helsley <mhelsley@vmware.com>
Signed-off-by: NSteven Rostedt (VMware) <rostedt@goodmis.org>
上级 0bc11ed5
......@@ -405,8 +405,7 @@ is_mcounted_section_name(char const *const txtname)
strcmp(".irqentry.text", txtname) == 0 ||
strcmp(".softirqentry.text", txtname) == 0 ||
strcmp(".kprobes.text", txtname) == 0 ||
strcmp(".cpuidle.text", txtname) == 0 ||
strcmp(".text.unlikely", txtname) == 0;
strcmp(".cpuidle.text", txtname) == 0;
}
/* 32 bit and 64 bit are very similar */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册