perf expr: Straighten expr__parse()/expr__find_other() interface
Now that we have a flex parser we don't need to update the parsed string pointer, so the interface can just be passed the pointer to the expression instead of a pointer to pointer. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Reviewed-by: Andi Kleen <ak@linux.intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: John Garry <john.garry@huawei.com> Cc: Kajol Jain <kjain@linux.ibm.com> Cc: Michael Petlan <mpetlan@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Ravi Bangoria <ravi.bangoria@linux.ibm.com> Link: http://lore.kernel.org/lkml/20200228093616.67125-5-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
committed by
Arnaldo Carvalho de Melo
parent
58ca707636
commit
0f9b1e124b
@@ -52,9 +52,9 @@ __expr__parse(double *val, struct parse_ctx *ctx, const char *expr,
|
||||
return ret;
|
||||
}
|
||||
|
||||
int expr__parse(double *final_val, struct parse_ctx *ctx, const char **pp)
|
||||
int expr__parse(double *final_val, struct parse_ctx *ctx, const char *expr)
|
||||
{
|
||||
return __expr__parse(final_val, ctx, *pp, EXPR_PARSE);
|
||||
return __expr__parse(final_val, ctx, expr, EXPR_PARSE);
|
||||
}
|
||||
|
||||
static bool
|
||||
@@ -71,14 +71,14 @@ already_seen(const char *val, const char *one, const char **other,
|
||||
return false;
|
||||
}
|
||||
|
||||
int expr__find_other(const char *p, const char *one, const char ***other,
|
||||
int expr__find_other(const char *expr, const char *one, const char ***other,
|
||||
int *num_other)
|
||||
{
|
||||
int err, i = 0, j = 0;
|
||||
struct parse_ctx ctx;
|
||||
|
||||
expr__ctx_init(&ctx);
|
||||
err = __expr__parse(NULL, &ctx, p, EXPR_OTHER);
|
||||
err = __expr__parse(NULL, &ctx, expr, EXPR_OTHER);
|
||||
if (err)
|
||||
return -1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user