aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/rdma/ib_cm.h
diff options
context:
space:
mode:
authorMark Zhang <markzhang@nvidia.com>2022-08-19 12:08:57 +0300
committerLeon Romanovsky <leonro@nvidia.com>2022-08-30 12:14:23 +0300
commit91a3f14ec953f3224215dc867001b9a201785740 (patch)
tree06f0ab6d404d64c794b0e51788b4a8de28247940 /include/rdma/ib_cm.h
parentRDMA/rtrs: Remove 'dir' argument from rnbd_srv_rdma_ev (diff)
downloadwireguard-linux-91a3f14ec953f3224215dc867001b9a201785740.tar.xz
wireguard-linux-91a3f14ec953f3224215dc867001b9a201785740.zip
IB/cm: Remove the service_mask parameter from ib_cm_listen()
Remove the service_mask parameter of ib_cm_listen(), as all callers use 0. Link: https://lore.kernel.org/r/20220819090859.957943-2-markzhang@nvidia.com Signed-off-by: Mark Zhang <markzhang@nvidia.com> Signed-off-by: Leon Romanovsky <leon@kernel.org>
Diffstat (limited to 'include/rdma/ib_cm.h')
-rw-r--r--include/rdma/ib_cm.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/rdma/ib_cm.h b/include/rdma/ib_cm.h
index e23eb357b761..fbf260c1b1df 100644
--- a/include/rdma/ib_cm.h
+++ b/include/rdma/ib_cm.h
@@ -340,13 +340,8 @@ void ib_destroy_cm_id(struct ib_cm_id *cm_id);
* and service ID resolution requests. The service ID should be specified
* network-byte order. If set to IB_CM_ASSIGN_SERVICE_ID, the CM will
* assign a service ID to the caller.
- * @service_mask: Mask applied to service ID used to listen across a
- * range of service IDs. If set to 0, the service ID is matched
- * exactly. This parameter is ignored if %service_id is set to
- * IB_CM_ASSIGN_SERVICE_ID.
*/
-int ib_cm_listen(struct ib_cm_id *cm_id, __be64 service_id,
- __be64 service_mask);
+int ib_cm_listen(struct ib_cm_id *cm_id, __be64 service_id);
struct ib_cm_id *ib_cm_insert_listen(struct ib_device *device,
ib_cm_handler cm_handler,