aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/mthca
diff options
context:
space:
mode:
authorKamal Heib <kamalheib1@gmail.com>2020-01-30 10:20:49 +0200
committerJason Gunthorpe <jgg@mellanox.com>2020-03-04 12:13:42 -0400
commitbb8865f435d81223596f1abd6dec0b12ed122af0 (patch)
tree6c045cda87031aaaae00bf34c0ce9a360d7b288f /drivers/infiniband/hw/mthca
parentRDMA/mlx5: Prevent UMR usage with RO only when we have RO caps (diff)
downloadlinux-dev-bb8865f435d81223596f1abd6dec0b12ed122af0.tar.xz
linux-dev-bb8865f435d81223596f1abd6dec0b12ed122af0.zip
RDMA/providers: Fix return value when QP type isn't supported
The proper return code is "-EOPNOTSUPP" when the requested QP type is not supported by the provider. Link: https://lore.kernel.org/r/20200130082049.463-1-kamalheib1@gmail.com Signed-off-by: Kamal Heib <kamalheib1@gmail.com> Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/hw/mthca')
-rw-r--r--drivers/infiniband/hw/mthca/mthca_provider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_provider.c b/drivers/infiniband/hw/mthca/mthca_provider.c
index ac19d57803b5..69a3e4f62fb1 100644
--- a/drivers/infiniband/hw/mthca/mthca_provider.c
+++ b/drivers/infiniband/hw/mthca/mthca_provider.c
@@ -561,7 +561,7 @@ static struct ib_qp *mthca_create_qp(struct ib_pd *pd,
}
default:
/* Don't support raw QPs */
- return ERR_PTR(-ENOSYS);
+ return ERR_PTR(-EOPNOTSUPP);
}
if (err) {