Fix: rcu: Remove wrapper definitions for obsolete RCU... (v5.1)
[lttng-modules.git] / lttng-events.c
index 47431ca9360532d755083c38040ad1087c458188..3481bd41b73812e5b2188afd2c173e860374beab 100644 (file)
@@ -89,7 +89,12 @@ int _lttng_field_statedump(struct lttng_session *session,
 
 void synchronize_trace(void)
 {
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,1,0))
+       synchronize_rcu();
+#else
        synchronize_sched();
+#endif
+
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
 #ifdef CONFIG_PREEMPT_RT_FULL
        synchronize_rcu();
This page took 0.02305 seconds and 4 git commands to generate.