A trace chunk should only be created on the session daemon end when
the trace's output supports this notion (2.11+).
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
goto error;
}
- if (session->output_traces && !session->current_trace_chunk) {
+ if (session->output_traces && !session->current_trace_chunk &&
+ session_output_supports_trace_chunks(session)) {
struct lttng_trace_chunk *trace_chunk;
trace_chunk = session_create_new_trace_chunk(
goto end_no_move;
}
-static
-bool output_supports_trace_chunks(const struct consumer_output *output)
+bool session_output_supports_trace_chunks(const struct ltt_session *session)
{
+ const struct consumer_output *output = session->kernel_session ?
+ session->kernel_session->consumer :
+ session->ust_session->consumer;
+
if (output->type == CONSUMER_DST_LOCAL) {
return true;
} else {
goto error;
}
- if (!output_supports_trace_chunks(output)) {
- goto end;
- }
next_chunk_id = session->most_recent_chunk_id.is_set ?
session->most_recent_chunk_id.value + 1 : 0;
struct lttng_trace_chunk *trace_chunk,
const enum lttng_trace_chunk_command_type *close_command);
+bool session_output_supports_trace_chunks(const struct ltt_session *session);
+
#endif /* _LTT_SESSION_H */