Name

queue_rcu_work — queue work after a RCU grace period

Synopsis

bool queue_rcu_work (struct workqueue_struct * wq,
 struct rcu_work * rwork);
 

Arguments

wq

workqueue to use

rwork

work to queue

Return

false if rwork was already pending, true otherwise. Note that a full RCU grace period is guaranteed only after a true return. While rwork is guarnateed to be executed after a false return, the execution may happen before a full RCU grace period has passed.