2 * Copyright (C) 2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <common/hashtable/hashtable.h>
22 #include <common/common.h>
23 #include <common/utils.h>
25 #include "lttng-sessiond.h"
28 void *thread_ht_cleanup(void *data
)
30 int ret
, i
, pollfd
, err
= -1;
31 uint32_t revents
, nb_fd
;
32 struct lttng_poll_event events
;
34 DBG("[ht-thread] startup.");
36 rcu_register_thread();
39 health_register(HEALTH_TYPE_HT_CLEANUP
);
43 ret
= sessiond_set_thread_pollset(&events
, 2);
45 goto error_poll_create
;
48 /* Add pipe to the pollset. */
49 ret
= lttng_poll_add(&events
, ht_cleanup_pipe
[0], LPOLLIN
| LPOLLERR
);
57 DBG3("[ht-thread] Polling on %d fds.",
58 LTTNG_POLL_GETNB(&events
));
60 /* Inifinite blocking call, waiting for transmission */
63 ret
= lttng_poll_wait(&events
, -1);
67 * Restart interrupted system call.
77 for (i
= 0; i
< nb_fd
; i
++) {
82 /* Fetch once the poll data */
83 revents
= LTTNG_POLL_GETEV(&events
, i
);
84 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
86 /* Thread quit pipe has been closed. Killing thread. */
87 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
92 assert(pollfd
== ht_cleanup_pipe
[0]);
94 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
95 ERR("ht cleanup pipe error");
97 } else if (!(revents
& LPOLLIN
)) {
98 /* No POLLIN and not a catched error, stop the thread. */
99 ERR("ht cleanup failed. revent: %u", revents
);
104 /* Get socket from dispatch thread. */
105 ret
= read(ht_cleanup_pipe
[0], &ht
, sizeof(ht
));
106 } while (ret
< 0 && errno
== EINTR
);
107 if (ret
< 0 || ret
< sizeof(ht
)) {
108 PERROR("ht cleanup notify pipe");
111 health_code_update();
113 * The whole point of this thread is to call
114 * lttng_ht_destroy from a context that is NOT:
115 * 1) a read-side RCU lock,
116 * 2) a call_rcu thread.
118 lttng_ht_destroy(ht
);
120 health_code_update();
126 lttng_poll_clean(&events
);
128 utils_close_pipe(ht_cleanup_pipe
);
129 ht_cleanup_pipe
[0] = ht_cleanup_pipe
[1] = -1;
130 DBG("[ust-thread] cleanup complete.");
133 ERR("Health error occurred in %s", __func__
);
136 rcu_thread_offline();
137 rcu_unregister_thread();
This page took 0.032 seconds and 4 git commands to generate.