Fix: increment buffer offset when failing to copy from user-space
[lttng-modules.git] / include / ringbuffer / backend.h
index 327b199b0858cadb049754ff61e88a4816674da5..1ede713c82de37233c54c86b1b4b20c41e1a7824 100644 (file)
@@ -313,6 +313,7 @@ fill_buffer:
         * the pollution of static inline code.
         */
        _lib_ring_buffer_memset(bufb, offset, 0, len, 0);
+       ctx->priv.buf_offset += len;
 }
 
 /**
@@ -395,6 +396,7 @@ fill_buffer:
        _lib_ring_buffer_memset(bufb, offset, pad, len - 1, 0);
        offset += len - 1;
        _lib_ring_buffer_memset(bufb, offset, '\0', 1, 0);
+       ctx->priv.buf_offset += len;
 }
 
 /*
This page took 0.022616 seconds and 4 git commands to generate.