diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2018-09-10 11:35:11 +0300 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2018-09-11 19:00:23 +0300 |
commit | f1a315420e79fe5c077fa119db9439ffabd2cda2 (patch) | |
tree | 23346250c4a5cb6c166a9d793b8c0e8185094368 | |
parent | 0b79b27748cbec221e1ceabf63578198602bf01d (diff) | |
download | linux-f1a315420e79fe5c077fa119db9439ffabd2cda2.tar.xz |
RDMA/hns: Fix an error code in hns_roce_v2_init_eq_table()
The error code isn't set on this path.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
-rw-r--r-- | drivers/infiniband/hw/hns/hns_roce_hw_v2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c index 0218c0f8c2a7..b84bfa48371d 100644 --- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c @@ -5125,6 +5125,7 @@ static int hns_roce_v2_init_eq_table(struct hns_roce_dev *hr_dev) create_singlethread_workqueue("hns_roce_irq_workqueue"); if (!hr_dev->irq_workq) { dev_err(dev, "Create irq workqueue failed!\n"); + ret = -ENOMEM; goto err_request_irq_fail; } |