Skip to content

Commit

Permalink
RDMA/cm: Delete not implemented CM peer to peer communication
Browse files Browse the repository at this point in the history
Peer to peer support was never implemented, so delete it to make code less
clutter.

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Leon Romanovsky <[email protected]>
Reviewed-by: Mark Zhang <[email protected]>
Signed-off-by: Jason Gunthorpe <[email protected]>
  • Loading branch information
Leon Romanovsky authored and jgunthorpe committed Mar 13, 2020
1 parent a762d46 commit a4f994a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
7 changes: 0 additions & 7 deletions drivers/infiniband/core/cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ struct cm_id_private {
__be16 pkey;
u8 private_data_len;
u8 max_cm_retries;
u8 peer_to_peer;
u8 responder_resources;
u8 initiator_depth;
u8 retry_count;
Expand Down Expand Up @@ -1381,10 +1380,6 @@ static void cm_format_req(struct cm_req_msg *req_msg,

static int cm_validate_req_param(struct ib_cm_req_param *param)
{
/* peer-to-peer not supported */
if (param->peer_to_peer)
return -EINVAL;

if (!param->primary_path)
return -EINVAL;

Expand Down Expand Up @@ -2437,8 +2432,6 @@ static int cm_rep_handler(struct cm_work *work)
cm_ack_timeout(cm_id_priv->target_ack_delay,
cm_id_priv->alt_av.timeout - 1);

/* todo: handle peer_to_peer */

ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
ret = atomic_inc_and_test(&cm_id_priv->work_count);
if (!ret)
Expand Down
1 change: 0 additions & 1 deletion include/rdma/ib_cm.h
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ struct ib_cm_req_param {
u32 starting_psn;
const void *private_data;
u8 private_data_len;
u8 peer_to_peer;
u8 responder_resources;
u8 initiator_depth;
u8 remote_cm_response_timeout;
Expand Down

0 comments on commit a4f994a

Please sign in to comment.