X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng-sessiond%2Fust-consumer.c;fp=lttng-sessiond%2Fust-consumer.c;h=ca008d4adf65d0165d3eaca6f06f149361081594;hp=b83fcc435f8aaf9ced379aa3fd512572b5aa502f;hb=d41f73b7cb50d57974bd1fad22342abaf9718566;hpb=5485f82241185e6703fe343704c48d2a6d6a4b46 diff --git a/lttng-sessiond/ust-consumer.c b/lttng-sessiond/ust-consumer.c index b83fcc435..ca008d4ad 100644 --- a/lttng-sessiond/ust-consumer.c +++ b/lttng-sessiond/ust-consumer.c @@ -75,7 +75,11 @@ static int send_channel_streams(int sock, lum.u.stream.channel_key = uchan->obj->shm_fd; lum.u.stream.stream_key = stream->obj->shm_fd; lum.u.stream.state = LTTNG_CONSUMER_ACTIVE_STREAM; - lum.u.stream.output = uchan->attr.output; + /* + * FIXME Hack alert! we force MMAP for now. Mixup + * between EVENT and UST enums elsewhere. + */ + lum.u.stream.output = DEFAULT_UST_CHANNEL_OUTPUT; lum.u.stream.mmap_len = stream->obj->memory_map_size; strncpy(lum.u.stream.path_name, stream->pathname, PATH_MAX - 1); lum.u.stream.path_name[PATH_MAX - 1] = '\0';