tracing/filters: Fix coding style issues
authorValentin Schneider <vschneid@redhat.com>
Fri, 1 Sep 2023 15:10:39 +0000 (17:10 +0200)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Sat, 2 Sep 2023 01:27:23 +0000 (21:27 -0400)
Recent commits have introduced some coding style issues, fix those up.

Link: https://lkml.kernel.org/r/20230901151039.125186-5-vschneid@redhat.com
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Valentin Schneider <vschneid@redhat.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace_events_filter.c

index 09b4733..33264e5 100644 (file)
@@ -1360,7 +1360,7 @@ int filter_assign_type(const char *type)
                        return FILTER_DYN_STRING;
                if (strstr(type, "cpumask_t"))
                        return FILTER_CPUMASK;
-               }
+       }
 
        if (strstr(type, "__rel_loc") && strstr(type, "char"))
                return FILTER_RDYN_STRING;
@@ -1731,7 +1731,9 @@ static int parse_pred(const char *str, void *data,
                maskstart = i;
 
                /* Walk the cpulist until closing } */
-               for (; str[i] && str[i] != '}'; i++);
+               for (; str[i] && str[i] != '}'; i++)
+                       ;
+
                if (str[i] != '}') {
                        parse_error(pe, FILT_ERR_MISSING_BRACE_CLOSE, pos + i);
                        goto err_free;