Re: [dpdk-dev] [PATCH] hash: fix use after free in thash

2021-11-04 Thread Thomas Monjalon
03/11/2021 16:41, David Marchand: > On Fri, Oct 29, 2021 at 4:55 PM Vladimir Medvedkin > wrote: > > > > This patch fixes use after free in thash library, reported by ASAN. > > > > Bugzilla ID: 868 > > Fixes: 28ebff11c2dc ("hash: add predictable RSS") > > > > Signed-off-by: Vladimir Medvedkin > >

Re: [dpdk-dev] [PATCH] hash: fix use after free in thash

2021-11-03 Thread David Marchand
On Fri, Oct 29, 2021 at 4:55 PM Vladimir Medvedkin wrote: > > This patch fixes use after free in thash library, reported by ASAN. > > Bugzilla ID: 868 > Fixes: 28ebff11c2dc ("hash: add predictable RSS") > > Signed-off-by: Vladimir Medvedkin Reviewed-by: David Marchand -- David Marchand

[dpdk-dev] [PATCH] hash: fix use after free in thash

2021-10-29 Thread Vladimir Medvedkin
This patch fixes use after free in thash library, reported by ASAN. Bugzilla ID: 868 Fixes: 28ebff11c2dc ("hash: add predictable RSS") Signed-off-by: Vladimir Medvedkin --- lib/hash/rte_thash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hash/rte_thash.c b/lib/ha