Re: [dpdk-dev] [PATCH v2 2/4] hash: add local cache for TSX region

2018-11-12 Thread Honnappa Nagarahalli
> > From: Yipeng Wang > > This patch adds back the local cache when TSX support is turned on. > > When TSX is turned on, free key-data slot ring would be contended by various > TSX regions. The purpose of this commit is to reduce possible memory > collisions during key insertion. > > Signed-of

[dpdk-dev] [PATCH v2 2/4] hash: add local cache for TSX region

2018-11-12 Thread Bruce Richardson
From: Yipeng Wang This patch adds back the local cache when TSX support is turned on. When TSX is turned on, free key-data slot ring would be contended by various TSX regions. The purpose of this commit is to reduce possible memory collisions during key insertion. Signed-off-by: Yipeng Wang Ac