X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fconsumer.c;fp=src%2Fcommon%2Fconsumer.c;h=effa5f86f38cfa67247fdbd17a214c34f42c5703;hp=1cb1c47431303e6ed3c516948a78b5807855c48c;hb=3d07185530211f3a650a7218199af44d4c77bf13;hpb=d7ba13889c8692b14f99238ddf2721ed78df89d2 diff --git a/src/common/consumer.c b/src/common/consumer.c index 1cb1c4743..effa5f86f 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -937,6 +937,7 @@ struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key, uint64_t session_id_per_pid, unsigned int monitor, unsigned int live_timer_interval, + const char *root_shm_path, const char *shm_path) { struct lttng_consumer_channel *channel; @@ -994,6 +995,10 @@ struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key, strncpy(channel->name, name, sizeof(channel->name)); channel->name[sizeof(channel->name) - 1] = '\0'; + if (root_shm_path) { + strncpy(channel->root_shm_path, root_shm_path, sizeof(channel->root_shm_path)); + channel->root_shm_path[sizeof(channel->root_shm_path) - 1] = '\0'; + } if (shm_path) { strncpy(channel->shm_path, shm_path, sizeof(channel->shm_path)); channel->shm_path[sizeof(channel->shm_path) - 1] = '\0';