X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng-sessiond%2Fust-app.c;h=4f68a87eecd86270cc0011cd528d38c79ec3fc96;hp=9c500481e0b52531962733a604b2cfdc51039e35;hb=58f3ca76ddd0d871fc1b71d816bdbabe1d7adeb1;hpb=e7b994a365c48d2dbe576b64811ec861da7c6375;ds=sidebyside diff --git a/lttng-sessiond/ust-app.c b/lttng-sessiond/ust-app.c index 9c500481e..4f68a87ee 100644 --- a/lttng-sessiond/ust-app.c +++ b/lttng-sessiond/ust-app.c @@ -584,7 +584,7 @@ static int create_ust_channel(struct ust_app *app, ret = ustctl_create_channel(app->key.sock, ua_sess->handle, (struct lttng_ust_channel_attr *)&ua_chan->attr, &ua_chan->obj); if (ret < 0) { - DBG("Error creating channel %s for app (pid: %d, sock: %d) " + ERR("Creating channel %s for app (pid: %d, sock: %d) " "and session handle %d with ret %d", ua_chan->name, app->key.pid, app->key.sock, ua_sess->handle, ret); @@ -1062,8 +1062,6 @@ static struct ust_app_channel *create_ust_app_channel( goto error; } shadow_copy_channel(ua_chan, uchan); - - lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node); } else { ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node); } @@ -1073,6 +1071,8 @@ static struct ust_app_channel *create_ust_app_channel( goto error; } + lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node); + return ua_chan; error: