Re: [ovs-dev] [PATCH RFC 4/5] conntrack: Split single cmap to multiple buckets.

2022-01-31 Thread Paolo Valerio
Hi Gaetan, thank you for the feedback Gaëtan Rivet writes: > Hi Paolo, > > On Mon, Nov 29, 2021, at 19:06, Paolo Valerio wrote: >> The purpose of this commit is to split the current way of storing the >> conn nodes. Before this patch the nodes were stored into a single cmap >> using ct->lock

Re: [ovs-dev] [PATCH RFC 4/5] conntrack: Split single cmap to multiple buckets.

2022-01-26 Thread Gaëtan Rivet
Hi Paolo, On Mon, Nov 29, 2021, at 19:06, Paolo Valerio wrote: > The purpose of this commit is to split the current way of storing the > conn nodes. Before this patch the nodes were stored into a single cmap > using ct->lock to avoid concurrent write access. > With this commit a single connection

[ovs-dev] [PATCH RFC 4/5] conntrack: Split single cmap to multiple buckets.

2021-11-29 Thread Paolo Valerio
The purpose of this commit is to split the current way of storing the conn nodes. Before this patch the nodes were stored into a single cmap using ct->lock to avoid concurrent write access. With this commit a single connection can be stored into one or two (at most) CONNTRACK_BUCKETS available