{
int ret;
struct ltt_ust_context *uctx;
+ struct lttng_ht_iter iter;
+ struct lttng_ht_node_ulong *uctx_node;
/* Create ltt UST context */
uctx = trace_ust_create_context(ctx);
if (uctx == NULL) {
- ret = LTTCOMM_FATAL;
+ ret = -EINVAL;
goto error;
}
}
break;
default:
- ret = LTTCOMM_UND;
+ ret = -ENOSYS;
+ goto error;
+ }
+
+ /* Lookup context before adding it */
+ lttng_ht_lookup(uchan->ctx, (void *)((unsigned long)uctx->ctx.ctx), &iter);
+ uctx_node = lttng_ht_iter_get_node_ulong(&iter);
+ if (uctx_node != NULL) {
+ ret = -EEXIST;
goto error;
}
/* Add ltt UST context node to ltt UST channel */
lttng_ht_add_unique_ulong(uchan->ctx, &uctx->node);
- return LTTCOMM_OK;
+ DBG("Context UST %d added to channel %s", uctx->ctx.ctx, uchan->name);
+
+ return 0;
error:
free(uctx);
{
int ret;
struct ltt_ust_context *uctx;
+ struct lttng_ht_iter iter;
+ struct lttng_ht_node_ulong *uctx_node;
/* Create ltt UST context */
uctx = trace_ust_create_context(ctx);
if (uctx == NULL) {
- ret = LTTCOMM_FATAL;
+ /* Context values are invalid. */
+ ret = -EINVAL;
goto error;
}
}
break;
default:
- ret = LTTCOMM_UND;
+ ret = -ENOSYS;
+ goto error;
+ }
+
+ /* Lookup context before adding it */
+ lttng_ht_lookup(uevent->ctx, (void *)((unsigned long)uctx->ctx.ctx), &iter);
+ uctx_node = lttng_ht_iter_get_node_ulong(&iter);
+ if (uctx_node != NULL) {
+ ret = -EEXIST;
goto error;
}
/* Add ltt UST context node to ltt UST event */
lttng_ht_add_unique_ulong(uevent->ctx, &uctx->node);
- return LTTCOMM_OK;
+ DBG("Context UST %d added to event %s", uctx->ctx.ctx, uevent->attr.name);
+
+ return 0;
error:
free(uctx);
switch (ret) {
case -EEXIST:
ret = LTTCOMM_UST_CONTEXT_EXIST;
- goto error;
+ break;
case -ENOMEM:
ret = LTTCOMM_FATAL;
- goto error;
+ break;
+ case -EINVAL:
+ ret = LTTCOMM_UST_CONTEXT_FAIL;
+ break;
+ case -ENOSYS:
+ ret = LTTCOMM_UNKNOWN_DOMAIN;
+ break;
+ default:
+ ret = LTTCOMM_OK;
+ break;
}
- return LTTCOMM_OK;
-
error:
return ret;
}
ua_ctx->handle = ua_ctx->obj->handle;
- DBG2("UST app context added to channel %s successfully", ua_chan->name);
+ DBG2("UST app context created successfully for channel %s", ua_chan->name);
error:
return ret;
ua_ctx->handle = ua_ctx->obj->handle;
- DBG2("UST app context added to event %s successfully", ua_event->name);
+ DBG2("UST app context created successfully for event %s", ua_event->name);
error:
return ret;
*/
void ust_app_global_update(struct ltt_ust_session *usess, int sock)
{
- int ret = 0;
- struct lttng_ht_iter iter, uiter;
+ int ret = 0, ctx_on_chan = 0;
+ struct lttng_ht_iter iter, uiter, iter_ctx;
struct ust_app *app;
struct ust_app_session *ua_sess;
struct ust_app_channel *ua_chan;
struct ust_app_event *ua_event;
+ struct ust_app_ctx *ua_ctx;
if (usess == NULL) {
ERR("No UST session on global update. Returning");
continue;
}
+ cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter_ctx.iter, ua_ctx,
+ node.node) {
+ ret = create_ust_channel_context(ua_chan, ua_ctx, app);
+ if (ret < 0) {
+ /* FIXME: Should we quit here or continue... */
+ continue;
+ }
+ }
+
+
/* For each events */
cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
node.node) {
/* FIXME: Should we quit here or continue... */
continue;
}
+
+ /* Add context on events. */
+ cds_lfht_for_each_entry(ua_event->ctx->ht, &iter_ctx.iter,
+ ua_ctx, node.node) {
+ ret = create_ust_event_context(ua_event, ua_ctx, app);
+ if (ret < 0) {
+ /* FIXME: Should we quit here or continue... */
+ continue;
+ }
+ }
}
+
+ /* Reset flag */
+ ctx_on_chan = 0;
}
if (usess->start_trace) {