Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36522f5c authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo
Browse files

perf tools: Add ordered_events__init function



Adding ordered_events__init function for struct ordered_events struct
initialization.

Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Acked-by: default avatarDavid Ahern <dsahern@gmail.com>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jean Pihet <jean.pihet@linaro.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/n/tip-g6dx35hed8g14eh1ygx4uzp6@git.kernel.org


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent fa4e5c67
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -193,3 +193,12 @@ int ordered_events__flush(struct perf_session *s, struct perf_tool *tool,

	return err;
}

void ordered_events__init(struct ordered_events *oe)
{
	INIT_LIST_HEAD(&oe->events);
	INIT_LIST_HEAD(&oe->cache);
	INIT_LIST_HEAD(&oe->to_free);
	oe->max_alloc_size = (u64) -1;
	oe->cur_alloc_size = 0;
}
+1 −0
Original line number Diff line number Diff line
@@ -38,4 +38,5 @@ struct ordered_event *ordered_events__new(struct ordered_events *oe, u64 timesta
void ordered_events__delete(struct ordered_events *oe, struct ordered_event *event);
int ordered_events__flush(struct perf_session *s, struct perf_tool *tool,
			  enum oe_flush how);
void ordered_events__init(struct ordered_events *oe);
#endif /* __ORDERED_EVENTS_H */
+1 −5
Original line number Diff line number Diff line
@@ -75,11 +75,7 @@ struct perf_session *perf_session__new(struct perf_data_file *file,
		goto out;

	session->repipe = repipe;
	INIT_LIST_HEAD(&session->ordered_events.events);
	INIT_LIST_HEAD(&session->ordered_events.cache);
	INIT_LIST_HEAD(&session->ordered_events.to_free);
	session->ordered_events.max_alloc_size = (u64) -1;
	session->ordered_events.cur_alloc_size = 0;
	ordered_events__init(&session->ordered_events);
	machines__init(&session->machines);

	if (file) {