consumerd: pass channel instance to stream creation function
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
index d1b04438b0d76956bd74ff2c8ddb2d8acb777418..19713c81291f3ae8e0ab3a5c4bfe67cbacb3c27d 100644 (file)
@@ -157,7 +157,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,
@@ -186,7 +188,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.023427 seconds and 4 git commands to generate.