@@ -60,7 +60,7 @@ static struct json_object *num_to_json(void *num, int elem_size, unsigned long f
}
static int event_to_json(struct tep_event *event, struct tep_record *record,
- struct list_head *jlist_head)
+ struct event_ctx *ctx)
{
struct json_object *jevent, *jobj, *jarray;
struct tep_format_field **fields;
@@ -190,7 +190,7 @@ static int event_to_json(struct tep_event *event, struct tep_record *record,
}
}
- list_add_tail(jlist_head, &jnode->list);
+ list_add_tail(&ctx->jlist_head, &jnode->list);
return 0;
err_jevent:
@@ -220,10 +220,9 @@ static int event_parse(struct tep_event *event, struct tep_record *record,
}
if (event_ctx->parse_event)
- return event_ctx->parse_event(event, record,
- &event_ctx->jlist_head);
+ return event_ctx->parse_event(event, record, event_ctx);
- return event_to_json(event, record, &event_ctx->jlist_head);
+ return event_to_json(event, record, event_ctx);
}
int trace_event_parse(struct tracefs_instance *inst, struct event_ctx *ectx)
@@ -17,7 +17,7 @@ struct event_ctx {
const char *event_name; /* optional */
int event_pid; /* optional */
int (*parse_event)(struct tep_event *event, struct tep_record *record,
- struct list_head *jlist_head); /* optional */
+ struct event_ctx *ctx);
};
int trace_event_parse(struct tracefs_instance *inst, struct event_ctx *ectx);