/* communication with splice */
static int thread_pipe[2];
+/* pipe to wake the poll thread when necessary */
+static int poll_pipe[2];
+
/* socket to communicate errors with sessiond */
static int error_socket = -1;
{
struct msghdr msg;
struct iovec iov[1];
- int ret, i;
+ int ret, i, tmp2;
struct cmsghdr *cmsg;
int nb_fd;
char tmp[CMSG_SPACE(size)];
}
/* flag to tell the polling thread to update its fd array */
update_fd_array = 1;
- send_error(KCONSUMERD_SUCCESS_RECV_FD);
+ /* signal the poll thread */
+ tmp2 = write(poll_pipe[1], "4", 1);
} else {
ERR("Didn't received any fd");
send_error(KCONSUMERD_ERROR_RECV_FD);
*local_kconsumerd_fd = NULL;
}
- *pollfd = malloc(fds_count * sizeof(struct pollfd));
+ /* allocate for all fds + 1 for the poll_pipe */
+ *pollfd = malloc((fds_count + 1) * sizeof(struct pollfd));
if (*pollfd == NULL) {
perror("pollfd malloc");
goto error_mem;
}
- *local_kconsumerd_fd = malloc(fds_count * sizeof(struct ltt_kconsumerd_fd));
+ /* allocate for all fds + 1 for the poll_pipe */
+ *local_kconsumerd_fd = malloc((fds_count + 1) * sizeof(struct ltt_kconsumerd_fd));
if (*local_kconsumerd_fd == NULL) {
perror("local_kconsumerd_fd malloc");
goto error_mem;
del_fd(iter);
}
}
+ /*
+ * insert the poll_pipe at the end of the array and don't increment i
+ * so nb_fd is the number of real FD
+ */
+ (*pollfd)[i].fd = poll_pipe[0];
+ (*pollfd)[i].events = POLLIN;
+
update_fd_array = 0;
pthread_mutex_unlock(&kconsumerd_lock_fds);
return i;
struct ltt_kconsumerd_fd **local_kconsumerd_fd = NULL;
/* local view of fds_count */
int nb_fd = 0;
+ char tmp;
+ int tmp2;
ret = pipe(thread_pipe);
if (ret < 0) {
}
/* poll on the array of fds */
- DBG("polling on %d fd", nb_fd);
- num_rdy = poll(pollfd, nb_fd, POLL_TIMEOUT);
+ DBG("polling on %d fd", nb_fd + 1);
+ num_rdy = poll(pollfd, nb_fd + 1, -1);
DBG("poll num_rdy : %d", num_rdy);
if (num_rdy == -1) {
perror("Poll error");
goto end;
}
+ /*
+ * if only the poll_pipe triggered poll to return just return to the
+ * beginning of the loop to update the array
+ */
+ if (num_rdy == 1 && pollfd[nb_fd].revents == POLLIN) {
+ DBG("poll_pipe wake up");
+ tmp2 = read(poll_pipe[0], &tmp, 1);
+ continue;
+ }
+
/* Take care of high priority channels first. */
for (i = 0; i < nb_fd; i++) {
switch(pollfd[i].revents) {
goto error;
}
+ /* create the pipe to wake to polling thread when needed */
+ ret = pipe(poll_pipe);
+ if (ret < 0) {
+ perror("Error creating poll pipe");
+ goto end;
+ }
+
/* Connect to the socket created by ltt-sessiond to report errors */
DBG("Connecting to error socket %s", error_sock_path);
error_socket = lttcomm_connect_unix_sock(error_sock_path);