Acked-by: Eli Cohen <eli@xxxxxxxxxxxx> Thanks! On Mon, Jan 12, 2015 at 11:14:29AM +0300, Dan Carpenter wrote: > We should return -ENOMEM on allocation failure instead of success. > > Fixes: e126ba97dba9 ('mlx5: Add driver for Mellanox Connect-IB adapters') > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> > > diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c > index 8a87404..cc4ac1e 100644 > --- a/drivers/infiniband/hw/mlx5/main.c > +++ b/drivers/infiniband/hw/mlx5/main.c > @@ -997,7 +997,7 @@ static int get_port_caps(struct mlx5_ib_dev *dev) > struct ib_device_attr *dprops = NULL; > struct ib_port_attr *pprops = NULL; > struct mlx5_general_caps *gen; > - int err = 0; > + int err = -ENOMEM; > int port; > > gen = &dev->mdev->caps.gen; > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html