8 comments

[ 3.1 ms ] story [ 32.0 ms ] thread
Where do these stand with respect to RCU locks? Are they a replacement, or are these used in different situations?
The main downside of seqlocks is that you usually can't have pointers in them. Since the basic scheme is read, do stuff, check if sequence counter changed, you need to make sure that you don't dereference a potentially invalid pointer in the "do stuff" phase if another thread is concurrently modifying the data.

RCU avoids this issue by essentially delaying freeing of objects until there are no longer any threads accessing it. But it requires very complicated mechanisms to track all active threads, whereas a seqlock is a very simple and self-contained.

In both cases the read-side overhead is tiny: for example on x86, you don't need any memory barrier or atomic instructions.

This is in error: "So, no one reader or writer can't access protected data. " (in reference to read_seqlock_excl()).

Readers using read_seqbegin() can still access the protected data.