X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Faction-executor.c;h=f982b7065e5b357c88b344e3e8805842f1779310;hp=db16f8049c19846ba3e3dfd3538551b29d68aaf3;hb=64eafdf60552bbd7e22fb1c8fc8fc2b42a3cf68b;hpb=0e43bcbfbc967868b8b939e378268d6296011886 diff --git a/src/bin/lttng-sessiond/action-executor.c b/src/bin/lttng-sessiond/action-executor.c index db16f8049..f982b7065 100644 --- a/src/bin/lttng-sessiond/action-executor.c +++ b/src/bin/lttng-sessiond/action-executor.c @@ -188,8 +188,7 @@ static int action_executor_notify_handler(struct action_executor *executor, work_item->evaluation, lttng_trigger_get_credentials(work_item->trigger), LTTNG_OPTIONAL_GET_PTR(work_item->object_creds), - client_handle_transmission_status, - executor); + client_handle_transmission_status, executor); } static int action_executor_start_session_handler(struct action_executor *executor, @@ -548,7 +547,7 @@ static void *action_executor_thread(void *_data) continue; } - /* Pop item from front of the listwith work lock held. */ + /* Pop item from front of the list with work lock held. */ work_item = cds_list_first_entry(&executor->work.list, struct action_work_item, list_node); cds_list_del(&work_item->list_node); @@ -670,8 +669,7 @@ enum action_executor_status action_executor_enqueue( if (executor->work.pending_count >= MAX_QUEUED_WORK_COUNT) { /* Most likely spammy, remove if it is the case. */ DBG("Refusing to enqueue action for trigger `%p` as work item %" PRIu64 - " (overflow)", - trigger, work_item_id); + " (overflow)", trigger, work_item_id); executor_status = ACTION_EXECUTOR_STATUS_OVERFLOW; goto error_unlock; }