Backport: relayd: initialize the global fd tracker from fd_cap parameter
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 27 Jun 2018 19:04:49 +0000 (15:04 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Fri, 21 Sep 2018 04:00:52 +0000 (00:00 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-relayd/Makefile.am
src/bin/lttng-relayd/lttng-relayd.h
src/bin/lttng-relayd/main.c

index 07bc29c175a7705adc5ed481345467cfbbf6929b..9fdadbcf5953e9631abb0eaa9919e0df7859e318 100644 (file)
@@ -31,4 +31,5 @@ lttng_relayd_LDADD = -lurcu-common -lurcu \
                $(top_builddir)/src/common/health/libhealth.la \
                $(top_builddir)/src/common/config/libconfig.la \
                $(top_builddir)/src/common/testpoint/libtestpoint.la \
                $(top_builddir)/src/common/health/libhealth.la \
                $(top_builddir)/src/common/config/libconfig.la \
                $(top_builddir)/src/common/testpoint/libtestpoint.la \
+               $(top_builddir)/src/common/fd-tracker/libfd-tracker.la \
                $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
                $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
index a3976852db2d2f40863f4e8defba770479df056d..ea207739c9d2601dc5bd0e07929905e0e24f14ca 100644 (file)
@@ -25,6 +25,7 @@
 #include <urcu/wfcqueue.h>
 
 #include <common/hashtable/hashtable.h>
 #include <urcu/wfcqueue.h>
 
 #include <common/hashtable/hashtable.h>
+#include <common/fd-tracker/fd-tracker.h>
 
 /*
  * Queue used to enqueue relay requests
 
 /*
  * Queue used to enqueue relay requests
@@ -52,6 +53,8 @@ extern int opt_group_output_by_host;
 
 extern int thread_quit_pipe[2];
 
 
 extern int thread_quit_pipe[2];
 
+extern struct fd_tracker *the_fd_tracker;
+
 void lttng_relay_notify_ready(void);
 int lttng_relay_stop_threads(void);
 
 void lttng_relay_notify_ready(void);
 int lttng_relay_stop_threads(void);
 
index 7cb0140c6e40205cdb33cda92fc65016ecffc84d..72ecef2f2e49901c2392d0f658b50832b2e420d6 100644 (file)
@@ -165,6 +165,9 @@ struct lttng_ht *sessions_ht;
 /* Relayd health monitoring */
 struct health_app *health_relayd;
 
 /* Relayd health monitoring */
 struct health_app *health_relayd;
 
+/* Global fd tracker. */
+struct fd_tracker *the_fd_tracker;
+
 static struct option long_options[] = {
        { "control-port", 1, 0, 'C', },
        { "data-port", 1, 0, 'D', },
 static struct option long_options[] = {
        { "control-port", 1, 0, 'C', },
        { "data-port", 1, 0, 'D', },
@@ -592,13 +595,9 @@ exit:
 
 static void print_global_objects(void)
 {
 
 static void print_global_objects(void)
 {
-       rcu_register_thread();
-
        print_viewer_streams();
        print_relay_streams();
        print_sessions();
        print_viewer_streams();
        print_relay_streams();
        print_sessions();
-
-       rcu_unregister_thread();
 }
 
 /*
 }
 
 /*
@@ -630,6 +629,7 @@ static void relayd_cleanup(void)
        if (tracing_group_name_override) {
                free((void *) tracing_group_name);
        }
        if (tracing_group_name_override) {
                free((void *) tracing_group_name);
        }
+       fd_tracker_log(the_fd_tracker);
 }
 
 /*
 }
 
 /*
@@ -3314,7 +3314,6 @@ int main(int argc, char **argv)
                }
        }
 
                }
        }
 
-
        if (opt_working_directory) {
                ret = utils_change_working_dir(opt_working_directory);
                if (ret) {
        if (opt_working_directory) {
                ret = utils_change_working_dir(opt_working_directory);
                if (ret) {
@@ -3322,6 +3321,19 @@ int main(int argc, char **argv)
                        goto exit_options;
                }
        }
                        goto exit_options;
                }
        }
+       /*
+        * The RCU thread registration (and use, through the fd-tracker's
+        * creation) is done after the daemonization to allow us to not
+        * deal with liburcu's fork() management as the call RCU needs to
+        * be restored.
+        */
+       rcu_register_thread();
+
+       the_fd_tracker = fd_tracker_create(lttng_opt_fd_cap);
+       if (!the_fd_tracker) {
+               retval = -1;
+               goto exit_options;
+       }
 
        /* Initialize thread health monitoring */
        health_relayd = health_app_create(NR_HEALTH_RELAYD_TYPES);
 
        /* Initialize thread health monitoring */
        health_relayd = health_app_create(NR_HEALTH_RELAYD_TYPES);
@@ -3485,6 +3497,9 @@ exit_options:
        /* Ensure all prior call_rcu are done. */
        rcu_barrier();
 
        /* Ensure all prior call_rcu are done. */
        rcu_barrier();
 
+       fd_tracker_destroy(the_fd_tracker);
+       rcu_unregister_thread();
+
        if (!retval) {
                exit(EXIT_SUCCESS);
        } else {
        if (!retval) {
                exit(EXIT_SUCCESS);
        } else {
This page took 0.029444 seconds and 5 git commands to generate.