X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon%2Fconsumer%2Fconsumer.h;h=0c757b84fb3c56b4399afee157d47fe0808b398a;hb=28cc88f3d462587c4fe37497b728fdb7cbc73e97;hp=b940036f6f074ed60cbfeac3daa6f29c1a85095e;hpb=92b7a7f81a94f7616c155aed8a213edd68937a57;p=lttng-tools.git diff --git a/src/common/consumer/consumer.h b/src/common/consumer/consumer.h index b940036f6..0c757b84f 100644 --- a/src/common/consumer/consumer.h +++ b/src/common/consumer/consumer.h @@ -34,6 +34,7 @@ #include #include #include +#include /* Commands for consumer */ enum lttng_consumer_command { @@ -112,6 +113,8 @@ struct consumer_metadata_cache; struct lttng_consumer_channel { /* HT node used for consumer_data.channel_ht */ struct lttng_ht_node_u64 node; + /* HT node used for consumer_data.channels_by_session_id_ht */ + struct lttng_ht_node_u64 channels_by_session_id_ht_node; /* Indexed key. Incremented value in the consumer. */ uint64_t key; /* Number of streams referencing this channel */ @@ -621,6 +624,8 @@ struct lttng_consumer_global_data { /* Channel hash table protected by consumer_data.lock. */ struct lttng_ht *channel_ht; + /* Channel hash table indexed by session id. */ + struct lttng_ht *channels_by_session_id_ht; /* * Flag specifying if the local array of FDs needs update in the * poll function. Protected by consumer_data.lock. @@ -647,6 +652,11 @@ struct lttng_consumer_global_data { * This HT uses the "node_channel_id" of the consumer stream. */ struct lttng_ht *stream_per_chan_id_ht; + + /* + * Trace chunk registry indexed by (session_id, chunk_id). + */ + struct lttng_trace_chunk_registry *chunk_registry; }; /*