Message ID | 20241216070516.4036749-2-harshit.m.mogalapalli@oracle.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [next,1/2] octeontx2-pf: fix netdev memory leak in rvu_rep_create() | expand |
On 12/16/24 08:05, Harshit Mogalapalli wrote: > Unregister the devlink port when register_netdev() fails. > > Fixes: 9ed0343f561e ("octeontx2-pf: Add devlink port support") > Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> same comment that this is better applied to -net, otherwise fine for me: Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> > --- > This is from static analysis, only compile tested. > --- > drivers/net/ethernet/marvell/octeontx2/nic/rep.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/rep.c b/drivers/net/ethernet/marvell/octeontx2/nic/rep.c > index 9e3fcbae5dee..04e08e06f30f 100644 > --- a/drivers/net/ethernet/marvell/octeontx2/nic/rep.c > +++ b/drivers/net/ethernet/marvell/octeontx2/nic/rep.c > @@ -690,6 +690,7 @@ int rvu_rep_create(struct otx2_nic *priv, struct netlink_ext_ack *extack) > if (err) { > NL_SET_ERR_MSG_MOD(extack, > "PFVF representor registration failed"); > + rvu_rep_devlink_port_unregister(rep); > free_netdev(ndev); > goto exit; > }
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/rep.c b/drivers/net/ethernet/marvell/octeontx2/nic/rep.c index 9e3fcbae5dee..04e08e06f30f 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/rep.c +++ b/drivers/net/ethernet/marvell/octeontx2/nic/rep.c @@ -690,6 +690,7 @@ int rvu_rep_create(struct otx2_nic *priv, struct netlink_ext_ack *extack) if (err) { NL_SET_ERR_MSG_MOD(extack, "PFVF representor registration failed"); + rvu_rep_devlink_port_unregister(rep); free_netdev(ndev); goto exit; }
Unregister the devlink port when register_netdev() fails. Fixes: 9ed0343f561e ("octeontx2-pf: Add devlink port support") Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> --- This is from static analysis, only compile tested. --- drivers/net/ethernet/marvell/octeontx2/nic/rep.c | 1 + 1 file changed, 1 insertion(+)