Re: [PATCH v5 09/13] xen/spinlock: split recursive spinlocks from normal ones

2024-03-18 Thread Jan Beulich
On 14.03.2024 08:20, Juergen Gross wrote: > Recursive and normal spinlocks are sharing the same data structure for > representation of the lock. This has two major disadvantages: > > - it is not clear from the definition of a lock, whether it is intended > to be used recursive or not, while a

[PATCH v5 09/13] xen/spinlock: split recursive spinlocks from normal ones

2024-03-14 Thread Juergen Gross
Recursive and normal spinlocks are sharing the same data structure for representation of the lock. This has two major disadvantages: - it is not clear from the definition of a lock, whether it is intended to be used recursive or not, while a mixture of both usage variants needs to be - in