ust_fork(): close the ustcomm_app socket in the child on fork()
[lttng-ust.git] / ustd / lowlevel.c
index 65657490d6044d13ce3aa31aa1797d7637aab3ef..47a6f776e6dc5a9f92c90327c7bb88179e5e36f6 100644 (file)
@@ -70,9 +70,9 @@ void finish_consuming_dead_subbuffer(struct buffer_info *buf)
 
        long i_subbuf;
 
-       DBG("processing died buffer");
-       DBG("consumed offset is %ld", consumed_offset);
-       DBG("write offset is %ld", write_offset);
+       DBG("processing dead buffer (%s)", buf->name);
+       DBG("consumed offset is %ld (%s)", consumed_offset, buf->name);
+       DBG("write offset is %ld (%s)", write_offset, buf->name);
 
        /* First subbuf that we need to consume now. It is not modulo'd.
         * Consumed_offset is the next byte to consume.  */
@@ -112,6 +112,8 @@ void finish_consuming_dead_subbuffer(struct buffer_info *buf)
                }
 
                /* Check if subbuf was fully written. This is from Mathieu's algorithm/paper. */
+               /* FIXME: not sure data_size = 0xffffffff when the buffer is not full. It might
+                * take the value of the header size initially */
                if (((commit_seq - buf->subbuf_size) & commit_seq_mask)
                    - (USTD_BUFFER_TRUNC(consumed_offset, buf) >> n_subbufs_order) == 0
                     && header->data_size != 0xffffffff && header->sb_size != 0xffffffff) {
This page took 0.042837 seconds and 4 git commands to generate.