Revert "Cleanup: ring buffer: remove lib_ring_buffer_switch_new_end()"
[lttng-modules.git] / lib / ringbuffer / frontend_api.h
index 13975602380bf02e82979c071969be0eaa56612a..c36ec3dc2e3f0e3e8436a54ebee50b0be26d77a4 100644 (file)
@@ -125,6 +125,14 @@ int lib_ring_buffer_try_reserve(const struct lib_ring_buffer_config *config,
         * boundary. It's safe to write.
         */
        *o_end = *o_begin + ctx->slot_size;
+
+       if (unlikely((subbuf_offset(*o_end, chan)) == 0))
+               /*
+                * The offset_end will fall at the very beginning of the next
+                * subbuffer.
+                */
+               return 1;
+
        return 0;
 }
 
This page took 0.0228120000000001 seconds and 4 git commands to generate.