X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Flive.c;h=3728005df77c3efa3d7c9e20f5ca537db26940bf;hb=40d808dd00d7228e9de39254f1e644b9fe1d2f42;hp=beb67b2a5654ed54cc5ef36a75408c2d6b667364;hpb=178a055717baca3641cecbb45fe3c0d5d3286a3a;p=lttng-tools.git diff --git a/src/bin/lttng-relayd/live.c b/src/bin/lttng-relayd/live.c index beb67b2a5..3728005df 100644 --- a/src/bin/lttng-relayd/live.c +++ b/src/bin/lttng-relayd/live.c @@ -326,42 +326,12 @@ error_unlock: return ret; } -/* - * Write to writable pipe used to notify a thread. - */ -static -int notify_thread_pipe(int wpipe) -{ - ssize_t ret; - - ret = lttng_write(wpipe, "!", 1); - if (ret < 1) { - PERROR("write poll pipe"); - } - - return (int) ret; -} - -/* - * Stop all threads by closing the thread quit pipe. - */ -static -int stop_threads(void) +int relayd_live_stop(void) { - int ret, retval = 0; - - /* Stopping all threads */ - DBG("Terminating all live threads"); - ret = notify_thread_pipe(thread_quit_pipe[1]); - if (ret < 0) { - ERR("write error on thread quit pipe"); - retval = -1; - } - - /* Dispatch thread */ + /* Stop dispatch thread */ CMM_STORE_SHARED(live_dispatch_thread_exit, 1); futex_nto1_wake(&viewer_conn_queue.futex); - return retval; + return 0; } /* @@ -518,6 +488,11 @@ restart: revents = LTTNG_POLL_GETEV(&events, i); pollfd = LTTNG_POLL_GETFD(&events, i); + if (!revents) { + /* No activity for this FD (poll implementation). */ + continue; + } + /* Thread quit pipe has been closed. Killing thread. */ ret = check_thread_quit_pipe(pollfd, revents); if (ret) { @@ -593,8 +568,8 @@ error_sock_control: } health_unregister(health_relayd); DBG("Live viewer listener thread cleanup complete"); - if (stop_threads()) { - ERR("Error stopping live threads"); + if (lttng_relay_stop_threads()) { + ERR("Error stopping threads"); } return NULL; } @@ -672,8 +647,8 @@ error_testpoint: } health_unregister(health_relayd); DBG("Live viewer dispatch thread dying"); - if (stop_threads()) { - ERR("Error stopping live threads"); + if (lttng_relay_stop_threads()) { + ERR("Error stopping threads"); } return NULL; } @@ -1952,6 +1927,11 @@ restart: health_code_update(); + if (!revents) { + /* No activity for this FD (poll implementation). */ + continue; + } + /* Thread quit pipe has been closed. Killing thread. */ ret = check_thread_quit_pipe(pollfd, revents); if (ret) { @@ -2038,8 +2018,8 @@ error_testpoint: ERR("Health error occurred in %s", __func__); } health_unregister(health_relayd); - if (stop_threads()) { - ERR("Error stopping live threads"); + if (lttng_relay_stop_threads()) { + ERR("Error stopping threads"); } rcu_unregister_thread(); return NULL; @@ -2054,11 +2034,6 @@ static int create_conn_pipe(void) return utils_create_pipe_cloexec(live_conn_pipe); } -int relayd_live_stop(void) -{ - return stop_threads(); -} - int relayd_live_join(void) { int ret, retval = 0; @@ -2127,7 +2102,10 @@ int relayd_live_create(struct lttng_uri *uri, cds_wfcq_init(&viewer_conn_queue.head, &viewer_conn_queue.tail); /* Set up max poll set size */ - lttng_poll_set_max_size(); + if (lttng_poll_set_max_size()) { + retval = -1; + goto exit_init_data; + } /* Setup the dispatcher thread */ ret = pthread_create(&live_dispatcher_thread, NULL,