I have a kmem_cache which contains RCU-protected data.
I also use call_rcu() after updating the RCU-protected pointers to free the elements in further.
Before destroying the cache i have to make sure that all slabs are freed.
The documentation says that both synchronize_rcu() and call_rcu()'s callbacks wait for an end of the current grace period. So there's no guarantee that once the synchronize_rcu() returns all call_rcu()'s callbacks are completed and particularly freed the slabs. Neither i haven't found a guarantee that all call_rcu() callbacks are invoked synchronously in a FIFO manner which could allow us to use one more call_rcu() for the destroying the cache.
So, how can i make sure that all RCU-protected data are freed before destroying the cache?
P.S. In my case with x86-64 Linux kernel the synchronize_rcu() waits until all call_rcu()'s callbacks are completed and it somehow works, but it seems like undefined behaviour in terms of documentation.
The answer is the rcu_barrier() function.
From the https://www.kernel.org/doc/Documentation/RCU/rcubarrier.txt: