X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-kernel.h;h=5c518135d0144b71aef0369f8f4527e84d92ebb2;hp=c86cc273ce8ba363865a706938a913687fd7dfab;hb=d0ae4ea864f84fa2456563abb20fe42e5cc29625;hpb=4dbc372b53ef1ac713497164e7a8b92100db7ae2 diff --git a/src/bin/lttng-sessiond/trace-kernel.h b/src/bin/lttng-sessiond/trace-kernel.h index c86cc273c..5c518135d 100644 --- a/src/bin/lttng-sessiond/trace-kernel.h +++ b/src/bin/lttng-sessiond/trace-kernel.h @@ -23,6 +23,7 @@ #include #include #include +#include #include "consumer.h" @@ -41,15 +42,16 @@ struct ltt_kernel_channel_list { struct cds_list_head head; }; +struct ltt_kernel_context { + struct lttng_kernel_context ctx; + struct cds_list_head list; +}; + /* Kernel event */ struct ltt_kernel_event { int fd; int enabled; - /* - * TODO: need internal representation to support more than a - * single context. - */ - struct lttng_kernel_context *ctx; + enum lttng_event_type type; struct lttng_kernel_event *event; struct cds_list_head list; }; @@ -60,15 +62,13 @@ struct ltt_kernel_channel { int enabled; unsigned int stream_count; unsigned int event_count; - /* - * TODO: need internal representation to support more than a - * single context. - */ - struct lttng_kernel_context *ctx; + struct cds_list_head ctx_list; struct lttng_channel *channel; struct ltt_kernel_event_list events_list; struct ltt_kernel_stream_list stream_list; struct cds_list_head list; + /* Session pointer which has a reference to this object. */ + struct ltt_kernel_session *session; }; /* Metadata */ @@ -81,8 +81,11 @@ struct ltt_kernel_metadata { struct ltt_kernel_stream { int fd; int state; + int cpu; /* Format is %s_%d respectively channel name and CPU number. */ - char name[LTTNG_SYMBOL_NAME_LEN]; + char name[DEFAULT_STREAM_NAME_LEN]; + uint64_t tracefile_size; + uint64_t tracefile_count; struct cds_list_head list; }; @@ -93,7 +96,6 @@ struct ltt_kernel_session { int consumer_fds_sent; unsigned int channel_count; unsigned int stream_count_global; - char *trace_path; struct ltt_kernel_metadata *metadata; struct ltt_kernel_channel_list channel_list; /* UID/GID of the user owning the session */ @@ -107,25 +109,37 @@ struct ltt_kernel_session { */ struct consumer_output *consumer; struct consumer_output *tmp_consumer; + /* Tracing session id */ + uint64_t id; + /* Session is active or not meaning it has been started or stopped. */ + unsigned int active:1; + /* Tell or not if the session has to output the traces. */ + unsigned int output_traces; + unsigned int snapshot_mode; + unsigned int has_non_default_channel; }; /* * Lookup functions. NULL is returned if not found. */ struct ltt_kernel_event *trace_kernel_get_event_by_name( - char *name, struct ltt_kernel_channel *channel); + char *name, struct ltt_kernel_channel *channel, + enum lttng_event_type type); struct ltt_kernel_channel *trace_kernel_get_channel_by_name( char *name, struct ltt_kernel_session *session); /* * Create functions malloc() the data structure. */ -struct ltt_kernel_session *trace_kernel_create_session(char *path); -struct ltt_kernel_channel *trace_kernel_create_channel(struct lttng_channel *chan, char *path); +struct ltt_kernel_session *trace_kernel_create_session(void); +struct ltt_kernel_channel *trace_kernel_create_channel( + struct lttng_channel *chan); struct ltt_kernel_event *trace_kernel_create_event(struct lttng_event *ev); struct ltt_kernel_metadata *trace_kernel_create_metadata(void); struct ltt_kernel_stream *trace_kernel_create_stream(const char *name, unsigned int count); +struct ltt_kernel_context *trace_kernel_create_context( + struct lttng_kernel_context *ctx); /* * Destroy functions free() the data structure and remove from linked list if @@ -136,5 +150,6 @@ void trace_kernel_destroy_metadata(struct ltt_kernel_metadata *metadata); void trace_kernel_destroy_channel(struct ltt_kernel_channel *channel); void trace_kernel_destroy_event(struct ltt_kernel_event *event); void trace_kernel_destroy_stream(struct ltt_kernel_stream *stream); +void trace_kernel_destroy_context(struct ltt_kernel_context *ctx); #endif /* _LTT_TRACE_KERNEL_H */