tracing/function: Convert func_set_flag() to a switch statement
authorAnton Vorontsov <anton.vorontsov@linaro.org>
Tue, 10 Jul 2012 00:10:46 +0000 (17:10 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Jul 2012 17:15:04 +0000 (10:15 -0700)
Since the function accepts just one bit, we can use the switch
construction instead of if/else if/...

Just a cosmetic change, there should be no functional changes.

Suggested-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/trace/trace_functions.c

index 13770abd7a12947f79e227de97ed121bb460d41a..a426f410c06053a5191f8f634138b07f049b6c38 100644 (file)
@@ -217,10 +217,11 @@ static void tracing_stop_function_trace(void)
 
 static int func_set_flag(u32 old_flags, u32 bit, int set)
 {
-       if (bit == TRACE_FUNC_OPT_STACK) {
+       switch (bit) {
+       case TRACE_FUNC_OPT_STACK:
                /* do nothing if already set */
                if (!!set == !!(func_flags.val & TRACE_FUNC_OPT_STACK))
-                       return 0;
+                       break;
 
                if (set) {
                        unregister_ftrace_function(&trace_ops);
@@ -230,12 +231,14 @@ static int func_set_flag(u32 old_flags, u32 bit, int set)
                        register_ftrace_function(&trace_ops);
                }
 
-               return 0;
-       } else if (bit == TRACE_FUNC_OPT_PSTORE) {
-               return 0;
+               break;
+       case TRACE_FUNC_OPT_PSTORE:
+               break;
+       default:
+               return -EINVAL;
        }
 
-       return -EINVAL;
+       return 0;
 }
 
 static struct tracer function_trace __read_mostly =