summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-11-09 08:23:12 -0500
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2019-05-08 12:15:12 -0400
commitbfcd631eb6de474d8e097fd0f9f840fdf7272a1d (patch)
tree21d949713ae3853c357034a8c4a97c1f0a630a20 /kernel
parent0f5e5a3ab7fa1c09370a4d709ad6157457d5b8b6 (diff)
tracing: Fix white space issues in parse_pred() function
Trivial fix to clean up an indentation issue, a whole chunk of code has an extra space in the indentation. Link: http://lkml.kernel.org/r/20181109132312.20994-1-colin.king@canonical.com Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/trace/trace_events_filter.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c
index 180ecb390baa..d3e59312ef40 100644
--- a/kernel/trace/trace_events_filter.c
+++ b/kernel/trace/trace_events_filter.c
@@ -1222,30 +1222,30 @@ static int parse_pred(const char *str, void *data,
1222 * (perf doesn't use it) and grab everything. 1222 * (perf doesn't use it) and grab everything.
1223 */ 1223 */
1224 if (strcmp(field->name, "ip") != 0) { 1224 if (strcmp(field->name, "ip") != 0) {
1225 parse_error(pe, FILT_ERR_IP_FIELD_ONLY, pos + i); 1225 parse_error(pe, FILT_ERR_IP_FIELD_ONLY, pos + i);
1226 goto err_free; 1226 goto err_free;
1227 } 1227 }
1228 pred->fn = filter_pred_none; 1228 pred->fn = filter_pred_none;
1229 1229
1230 /* 1230 /*
1231 * Quotes are not required, but if they exist then we need 1231 * Quotes are not required, but if they exist then we need
1232 * to read them till we hit a matching one. 1232 * to read them till we hit a matching one.
1233 */ 1233 */
1234 if (str[i] == '\'' || str[i] == '"') 1234 if (str[i] == '\'' || str[i] == '"')
1235 q = str[i]; 1235 q = str[i];
1236 else 1236 else
1237 q = 0; 1237 q = 0;
1238 1238
1239 for (i++; str[i]; i++) { 1239 for (i++; str[i]; i++) {
1240 if (q && str[i] == q) 1240 if (q && str[i] == q)
1241 break; 1241 break;
1242 if (!q && (str[i] == ')' || str[i] == '&' || 1242 if (!q && (str[i] == ')' || str[i] == '&' ||
1243 str[i] == '|')) 1243 str[i] == '|'))
1244 break; 1244 break;
1245 } 1245 }
1246 /* Skip quotes */ 1246 /* Skip quotes */
1247 if (q) 1247 if (q)
1248 s++; 1248 s++;
1249 len = i - s; 1249 len = i - s;
1250 if (len >= MAX_FILTER_STR_VAL) { 1250 if (len >= MAX_FILTER_STR_VAL) {
1251 parse_error(pe, FILT_ERR_OPERAND_TOO_LONG, pos + i); 1251 parse_error(pe, FILT_ERR_OPERAND_TOO_LONG, pos + i);