From ffb4aaa79bfac71fbb57bf586d81af7097011f88 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 13 Nov 2014 16:17:00 -0500 Subject: [PATCH] Fix: call rcu should call internal RCU API Because call rcu implementation is included within RCU flavors, calling the RCU API goes through the API for non-LGPL code (this is a special case for the RCU flavor implementation c file). Since this is clearly LGPL code, we can use the inline versions. Signed-off-by: Mathieu Desnoyers --- urcu-call-rcu-impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/urcu-call-rcu-impl.h b/urcu-call-rcu-impl.h index a55ac08..c4a7875 100644 --- a/urcu-call-rcu-impl.h +++ b/urcu-call-rcu-impl.h @@ -669,10 +669,10 @@ void call_rcu(struct rcu_head *head, struct call_rcu_data *crdp; /* Holding rcu read-side lock across use of per-cpu crdp */ - rcu_read_lock(); + _rcu_read_lock(); crdp = get_call_rcu_data(); _call_rcu(head, func, crdp); - rcu_read_unlock(); + _rcu_read_unlock(); } /* @@ -804,14 +804,14 @@ void rcu_barrier(void) int was_online; /* Put in offline state in QSBR. */ - was_online = rcu_read_ongoing(); + was_online = _rcu_read_ongoing(); if (was_online) rcu_thread_offline(); /* * Calling a rcu_barrier() within a RCU read-side critical * section is an error. */ - if (rcu_read_ongoing()) { + if (_rcu_read_ongoing()) { static int warned = 0; if (!warned) { -- 2.34.1