Merge branch 'for-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu
[deliverable/linux.git] / kernel / rcutiny_plugin.h
index 3d0190282204308005f1867abe6d53125787e1b0..f85016a2309b94c08121f0e3346c1c24d81d4c18 100644 (file)
@@ -706,7 +706,10 @@ void synchronize_rcu(void)
                return;
 
        /* Once we get past the fastpath checks, same code as rcu_barrier(). */
-       rcu_barrier();
+       if (rcu_expedited)
+               synchronize_rcu_expedited();
+       else
+               rcu_barrier();
 }
 EXPORT_SYMBOL_GPL(synchronize_rcu);
 
This page took 0.026747 seconds and 5 git commands to generate.