On Fri, Jul 12, 2024 at 12:33 AM Bart Van Assche <bvanassche@xxxxxxx> wrote:
The comment above 'swap_lock' in this patch is as follows:
/**
* @swap_lock: Held while swapping word <-> cleared
*/
In other words, 'swap_lock' is used to serialize *code*. Using
synchronization objects to serialize code is known as an anti-pattern,
something that shouldn't be done.
Synchronization objects should be used
to serialize access to data.
It can be thought of serializing UPDATE on both ->word and ->cleared,
instead of code.