forked from Minki/linux
tracing/trivial: Consolidate error return condition
Consolidate the checks for !enabled and !param to return -EINVAL in event_enable_func(). Link: http://lkml.kernel.org/r/1369380137-12452-1-git-send-email-harsh@linux.vnet.ibm.com Signed-off-by: Harsh Prateek Bora <harsh@linux.vnet.ibm.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
90e3c03c3a
commit
8092e808a3
@ -2011,10 +2011,7 @@ event_enable_func(struct ftrace_hash *hash,
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/* hash funcs only work with set_ftrace_filter */
|
/* hash funcs only work with set_ftrace_filter */
|
||||||
if (!enabled)
|
if (!enabled || !param)
|
||||||
return -EINVAL;
|
|
||||||
|
|
||||||
if (!param)
|
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
system = strsep(¶m, ":");
|
system = strsep(¶m, ":");
|
||||||
|
Loading…
Reference in New Issue
Block a user