X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=urcu-call-rcu-impl.h;h=51ee91ffd1ef87e0e8a8e76ff00b64d6dd24c660;hb=7d214e5620621ebd67fd7003b9f23d292ac08792;hp=c0298d24b6a732ba7979fa3aa740b4085e1ccb45;hpb=66bc4dcd6d823e527395bac6755c17718c3f8e71;p=urcu.git diff --git a/urcu-call-rcu-impl.h b/urcu-call-rcu-impl.h index c0298d2..51ee91f 100644 --- a/urcu-call-rcu-impl.h +++ b/urcu-call-rcu-impl.h @@ -622,12 +622,12 @@ void call_rcu(struct rcu_head *head, cds_wfq_node_init(&head->next); head->func = func; /* Holding rcu read-side lock across use of per-cpu crdp */ - rcu_read_lock(); + _rcu_read_lock(); crdp = get_call_rcu_data(); cds_wfq_enqueue(&crdp->cbs, &head->next); uatomic_inc(&crdp->qlen); wake_call_rcu_thread(crdp); - rcu_read_unlock(); + _rcu_read_unlock(); } /*