From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuval Shaia Subject: Re: [PATCH rdma-next 2/5] RDMA/mlx5: Avoid memory leak in case of XRCD dealloc failure Date: Sun, 28 Jan 2018 13:07:18 +0200 Message-ID: <20180128110717.GA7001@yuvallap> References: <20180128092533.4156-1-leon@kernel.org> <20180128092533.4156-3-leon@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20180128092533.4156-3-leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Sender: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Leon Romanovsky Cc: Doug Ledford , Jason Gunthorpe , RDMA mailing list , Jack Morgenstein , Mark Bloch , Parav Pandit , Leon Romanovsky List-Id: linux-rdma@vger.kernel.org On Sun, Jan 28, 2018 at 11:25:30AM +0200, Leon Romanovsky wrote: > From: Leon Romanovsky > > Failure in XRCD FW deallocation command leaves memory leaked and > returns error to the user which he can't do anything about it. > > This patch changes behavior to always free memory and always return > success to the user. > > Fixes: e126ba97dba9 ("mlx5: Add driver for Mellanox Connect-IB adapters") > Reviewed-by: Majd Dibbiny > Signed-off-by: Leon Romanovsky > --- > drivers/infiniband/hw/mlx5/qp.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c > index b06a2f9a8df4..39d24bf694a8 100644 > --- a/drivers/infiniband/hw/mlx5/qp.c > +++ b/drivers/infiniband/hw/mlx5/qp.c > @@ -5066,13 +5066,10 @@ int mlx5_ib_dealloc_xrcd(struct ib_xrcd *xrcd) > int err; > > err = mlx5_core_xrcd_dealloc(dev->mdev, xrcdn); > - if (err) { > + if (err) > mlx5_ib_warn(dev, "failed to dealloc xrcdn 0x%x\n", xrcdn); > - return err; > - } > > kfree(xrcd); > - > return 0; In this case suggesting to make the function return void. > } > > -- > 2.16.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html