consumerd: pass channel instance to stream creation function
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
index a6d8463a8ce2f6709da1de394e4b7729632af574..b46a505021203a017832cec88826244f02895643 100644 (file)
@@ -147,7 +147,9 @@ static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
        assert(channel);
        assert(ctx);
 
-       stream = consumer_allocate_stream(channel->key,
+       stream = consumer_allocate_stream(
+                       channel,
+                       channel->key,
                        key,
                        channel->name,
                        channel->relayd_id,
@@ -176,7 +178,6 @@ static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
        }
 
        consumer_stream_update_channel_attributes(stream, channel);
-       stream->chan = channel;
 
 error:
        if (_alloc_ret) {
This page took 0.02289 seconds and 4 git commands to generate.