Remove assert from kconsumerd (multi-fd handling is ok)
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 22 Jul 2011 18:38:17 +0000 (14:38 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 22 Jul 2011 18:38:17 +0000 (14:38 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
liblttkconsumerd/liblttkconsumerd.c
liblttsessiondcomm/liblttsessiondcomm.c

index 1d69a4c463faffc1fa764141e287f725a625c535..f60888a83fc8f5ebc5758155770876973216c01e 100644 (file)
@@ -597,12 +597,8 @@ static int kconsumerd_consumerd_recv_fd(int sfd,
        nb_fd = size / sizeof(struct lttcomm_kconsumerd_msg);
 
        /*
-        * Note: only supporting receiving one FD at a time for now.
-        * This code needs fixing if we wish to receive more (a single
-        * receive for the whole fd batch rather than one per fd).
+        * nb_fd is the number of fds we receive. One fd per recvmsg.
         */
-       assert(nb_fd == 1);
-
        for (i = 0; i < nb_fd; i++) {
                struct msghdr msg = { 0 };
 
index 253e63545addf17710baeecc679d37fa05d11aae..9313a34c5d57eba26190e0b07075dea2d7c1ab1b 100644 (file)
@@ -299,8 +299,8 @@ ssize_t lttcomm_send_fds_unix_sock(int sock, void *buf, int *fds, size_t nb_fd,
        char tmp[CMSG_SPACE(sizeof_fds)];
 
        /*
-        * Note: the consumerd receiver only supports receiving one FD at a
-        * time for now.
+        * Note: the consumerd receiver only supports receiving one FD per
+        * message.
         */
        assert(nb_fd == 1);
 
This page took 0.0277 seconds and 5 git commands to generate.