lib ring buffer frontend: add missing lock initialization
[lttng-modules.git] / lib / ringbuffer / ring_buffer_frontend.c
index 3003dd8324458ee62c8e99460b295bc3ab8e481d..a45373b062d4bd5ae95b0519170b0c9e51224961 100644 (file)
@@ -1702,3 +1702,11 @@ int lib_ring_buffer_reserve_slow(struct lib_ring_buffer_ctx *ctx)
        return 0;
 }
 EXPORT_SYMBOL_GPL(lib_ring_buffer_reserve_slow);
+
+void __init init_lib_ring_buffer_frontend(void)
+{
+       int cpu;
+
+       for_each_possible_cpu(cpu)
+               spin_lock_init(&per_cpu(ring_buffer_nohz_lock, cpu));
+}
This page took 0.025145 seconds and 4 git commands to generate.