RE: [PATCH v3 1/3] net/ice: fix possible memory leak

2024-07-22 Thread Medvedkin, Vladimir
-Original Message- From: Richardson, Bruce Sent: Monday, July 22, 2024 11:42 AM To: Medvedkin, Vladimir Cc: dev@dpdk.org; sta...@dpdk.org; Stolarchuk, Michael Subject: Re: [PATCH v3 1/3] net/ice: fix possible memory leak On Mon, Jul 22, 2024 at 08:28:34AM +, Vladimir Medvedkin

Re: [PATCH v3 1/3] net/ice: fix possible memory leak

2024-07-22 Thread Bruce Richardson
On Mon, Jul 22, 2024 at 08:28:34AM +, Vladimir Medvedkin wrote: > This patch fixes possible memory leak inside the > ice_hash_parse_raw_pattern() due to the lack of a call to rte_free() > for previously allocated pkt_buf and msk_buf. > > Fixes: 1b9c68120a1c ("net/ice: enable protocol agnostic

[PATCH v3 1/3] net/ice: fix possible memory leak

2024-07-22 Thread Vladimir Medvedkin
This patch fixes possible memory leak inside the ice_hash_parse_raw_pattern() due to the lack of a call to rte_free() for previously allocated pkt_buf and msk_buf. Fixes: 1b9c68120a1c ("net/ice: enable protocol agnostic flow offloading in RSS") Cc: sta...@dpdk.org Reported-by: Michael Theodore St