Re: [ovs-dev] [PATCH v11 3/5] dpif: Support atomic_bool field type.

2024-03-15 Thread Eelco Chaudron
On 11 Mar 2024, at 18:51, Eric Garver wrote: > The next commit will convert a dp feature from bool to atomic_bool. As > such we have to add support to the macros and functions. We must pass by > reference instead of pass by value because all the atomic operations > require a reference. > >

[ovs-dev] [PATCH v11 3/5] dpif: Support atomic_bool field type.

2024-03-11 Thread Eric Garver
The next commit will convert a dp feature from bool to atomic_bool. As such we have to add support to the macros and functions. We must pass by reference instead of pass by value because all the atomic operations require a reference. Signed-off-by: Eric Garver --- ofproto/ofproto-dpif.c | 54