[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <Y/Xe53wd27MaQe6G@unreal>
Date: Wed, 22 Feb 2023 11:22:47 +0200
From: Leon Romanovsky <leon@...nel.org>
To: Tony Nguyen <anthony.l.nguyen@...el.com>
Cc: davem@...emloft.net, kuba@...nel.org, pabeni@...hat.com,
edumazet@...gle.com,
Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@...ux.intel.com>,
netdev@...r.kernel.org, maciej.fijalkowski@...el.com,
magnus.karlsson@...el.com, ast@...nel.org, daniel@...earbox.net,
hawk@...nel.org, john.fastabend@...il.com, bpf@...r.kernel.org,
Chandan Kumar Rout <chandanx.rout@...el.com>
Subject: Re: [PATCH net 1/1] ice: Fix missing cleanup routine in the case of
partial memory allocation
On Tue, Feb 21, 2023 at 11:17:50AM -0800, Tony Nguyen wrote:
> From: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@...ux.intel.com>
>
> Add missing memory free in the case of partial memory allocation
> in the loop in ice_realloc_zc_buf function.
I don't think that this is correct behaviour for realloc function to
free memory of caller just because target allocation failed.
It should be done in upper level.
Thanks
>
> Fixes: 7e753eb675f0 ("ice: Fix DMA mappings leak")
> Signed-off-by: Martyna Szapar-Mudlaw <martyna.szapar-mudlaw@...ux.intel.com>
> Reviewed-by: Maciej Fijalkowski <maciej.fijalkowski@...el.com>
> Tested-by: Chandan Kumar Rout <chandanx.rout@...el.com> (A Contingent Worker at Intel)
> Signed-off-by: Tony Nguyen <anthony.l.nguyen@...el.com>
> ---
> drivers/net/ethernet/intel/ice/ice_xsk.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_xsk.c b/drivers/net/ethernet/intel/ice/ice_xsk.c
> index 374b7f10b549..9ec02f80a2cf 100644
> --- a/drivers/net/ethernet/intel/ice/ice_xsk.c
> +++ b/drivers/net/ethernet/intel/ice/ice_xsk.c
> @@ -377,8 +377,16 @@ int ice_realloc_zc_buf(struct ice_vsi *vsi, bool zc)
> for_each_set_bit(q, vsi->af_xdp_zc_qps,
> max_t(int, vsi->alloc_txq, vsi->alloc_rxq)) {
> rx_ring = vsi->rx_rings[q];
> - if (ice_realloc_rx_xdp_bufs(rx_ring, zc))
> + if (ice_realloc_rx_xdp_bufs(rx_ring, zc)) {
> + unsigned long qid = q;
> +
> + for_each_set_bit(q, vsi->af_xdp_zc_qps, qid) {
> + rx_ring = vsi->rx_rings[q];
> + zc ? kfree(rx_ring->xdp_buf) :
> + kfree(rx_ring->rx_buf);
> + }
> return -ENOMEM;
> + }
> }
>
> return 0;
> --
> 2.38.1
>
Powered by blists - more mailing lists