X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fcontext.cpp;fp=src%2Fbin%2Flttng-sessiond%2Fcontext.cpp;h=cccf1c0d51b0bf80a3cad888ebae128cd4102c4c;hp=8dc82fbe82e70b538d41c2df88a1deb377df9412;hb=28ab034a2c3582d07d3423d2d746731f87d3969f;hpb=52e345b9ac912d033c2a2c25a170a01cf209839d diff --git a/src/bin/lttng-sessiond/context.cpp b/src/bin/lttng-sessiond/context.cpp index 8dc82fbe8..cccf1c0d5 100644 --- a/src/bin/lttng-sessiond/context.cpp +++ b/src/bin/lttng-sessiond/context.cpp @@ -7,28 +7,28 @@ */ #define _LGPL_SOURCE +#include "agent.hpp" +#include "context.hpp" +#include "kernel.hpp" +#include "trace-ust.hpp" +#include "ust-app.hpp" + +#include +#include + #include #include #include #include #include -#include -#include - -#include "context.hpp" -#include "kernel.hpp" -#include "ust-app.hpp" -#include "trace-ust.hpp" -#include "agent.hpp" - /* * Add kernel context to all channel. * * Assumes the ownership of kctx. */ static int add_kctx_all_channels(struct ltt_kernel_session *ksession, - struct ltt_kernel_context *kctx) + struct ltt_kernel_context *kctx) { int ret; struct ltt_kernel_channel *kchan; @@ -39,7 +39,7 @@ static int add_kctx_all_channels(struct ltt_kernel_session *ksession, DBG("Adding kernel context to all channels"); /* Go over all channels */ - cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) { + cds_list_for_each_entry (kchan, &ksession->channel_list.head, list) { struct ltt_kernel_context *kctx_copy; kctx_copy = trace_kernel_copy_context(kctx); @@ -69,8 +69,7 @@ error: * * Assumes the ownership of kctx. */ -static int add_kctx_to_channel(struct ltt_kernel_context *kctx, - struct ltt_kernel_channel *kchan) +static int add_kctx_to_channel(struct ltt_kernel_context *kctx, struct ltt_kernel_channel *kchan) { int ret; @@ -96,9 +95,9 @@ error: * Add UST context to channel. */ static int add_uctx_to_channel(struct ltt_ust_session *usess, - enum lttng_domain_type domain, - struct ltt_ust_channel *uchan, - const struct lttng_event_context *ctx) + enum lttng_domain_type domain, + struct ltt_ust_channel *uchan, + const struct lttng_event_context *ctx) { int ret; struct ltt_ust_context *uctx = NULL; @@ -108,7 +107,7 @@ static int add_uctx_to_channel(struct ltt_ust_session *usess, LTTNG_ASSERT(ctx); /* Check if context is duplicate */ - cds_list_for_each_entry(uctx, &uchan->ctx_list, list) { + cds_list_for_each_entry (uctx, &uchan->ctx_list, list) { if (trace_ust_match_context(uctx, ctx)) { ret = LTTNG_ERR_UST_CONTEXT_EXIST; goto duplicate; @@ -187,8 +186,8 @@ duplicate: * Add kernel context to tracer. */ int context_kernel_add(struct ltt_kernel_session *ksession, - const struct lttng_event_context *ctx, - const char *channel_name) + const struct lttng_event_context *ctx, + const char *channel_name) { int ret; struct ltt_kernel_channel *kchan; @@ -325,8 +324,7 @@ int context_kernel_add(struct ltt_kernel_session *ksession, kctx->ctx.u.perf_counter.type = ctx->u.perf_counter.type; kctx->ctx.u.perf_counter.config = ctx->u.perf_counter.config; - strncpy(kctx->ctx.u.perf_counter.name, ctx->u.perf_counter.name, - LTTNG_SYMBOL_NAME_LEN); + strncpy(kctx->ctx.u.perf_counter.name, ctx->u.perf_counter.name, LTTNG_SYMBOL_NAME_LEN); kctx->ctx.u.perf_counter.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0'; if (*channel_name == '\0') { @@ -365,9 +363,9 @@ error: * Add UST context to tracer. */ int context_ust_add(struct ltt_ust_session *usess, - enum lttng_domain_type domain, - const struct lttng_event_context *ctx, - const char *channel_name) + enum lttng_domain_type domain, + const struct lttng_event_context *ctx, + const char *channel_name) { int ret = LTTNG_OK; struct lttng_ht_iter iter; @@ -397,11 +395,10 @@ int context_ust_add(struct ltt_ust_session *usess, } else { rcu_read_lock(); /* Add ctx all events, all channels */ - cds_lfht_for_each_entry(chan_ht->ht, &iter.iter, uchan, node.node) { + cds_lfht_for_each_entry (chan_ht->ht, &iter.iter, uchan, node.node) { ret = add_uctx_to_channel(usess, domain, uchan, ctx); if (ret) { - ERR("Failed to add context to channel %s", - uchan->name); + ERR("Failed to add context to channel %s", uchan->name); continue; } }