diff options
| author | Sowmini Varadhan <sowmini.varadhan@oracle.com> | 2016-06-13 12:44:32 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2016-06-15 02:50:42 -0400 |
| commit | 7d885d0fc69abe22382fae5dddd84684333ab29b (patch) | |
| tree | c948f1ea82f5e09d6a2109ce51a01380f103fc03 /net/rds | |
| parent | 5c3d274c75fbcee8e1c919acf25c7feb19a31492 (diff) | |
RDS: Remove stale function rds_send_get_message()
The only caller of rds_send_get_message() was
rds_iw_send_cq_comp_handler() which was removed as part of
commit dcdede0406d3 ("RDS: Drop stale iWARP RDMA transport"),
so remove rds_send_get_message() for the same reason.
Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds')
| -rw-r--r-- | net/rds/rds.h | 2 | ||||
| -rw-r--r-- | net/rds/send.c | 36 |
2 files changed, 0 insertions, 38 deletions
diff --git a/net/rds/rds.h b/net/rds/rds.h index d94aa36cab93..2cffd37a550f 100644 --- a/net/rds/rds.h +++ b/net/rds/rds.h | |||
| @@ -789,8 +789,6 @@ void rds_send_drop_acked(struct rds_connection *conn, u64 ack, | |||
| 789 | void rds_send_path_drop_acked(struct rds_conn_path *cp, u64 ack, | 789 | void rds_send_path_drop_acked(struct rds_conn_path *cp, u64 ack, |
| 790 | is_acked_func is_acked); | 790 | is_acked_func is_acked); |
| 791 | int rds_send_pong(struct rds_connection *conn, __be16 dport); | 791 | int rds_send_pong(struct rds_connection *conn, __be16 dport); |
| 792 | struct rds_message *rds_send_get_message(struct rds_connection *, | ||
| 793 | struct rm_rdma_op *); | ||
| 794 | 792 | ||
| 795 | /* rdma.c */ | 793 | /* rdma.c */ |
| 796 | void rds_rdma_unuse(struct rds_sock *rs, u32 r_key, int force); | 794 | void rds_rdma_unuse(struct rds_sock *rs, u32 r_key, int force); |
diff --git a/net/rds/send.c b/net/rds/send.c index 3f6a96cb3b94..3fb280b75160 100644 --- a/net/rds/send.c +++ b/net/rds/send.c | |||
| @@ -566,42 +566,6 @@ __rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status) | |||
| 566 | } | 566 | } |
| 567 | 567 | ||
| 568 | /* | 568 | /* |
| 569 | * This is called from the IB send completion when we detect | ||
| 570 | * a RDMA operation that failed with remote access error. | ||
| 571 | * So speed is not an issue here. | ||
| 572 | */ | ||
| 573 | struct rds_message *rds_send_get_message(struct rds_connection *conn, | ||
| 574 | struct rm_rdma_op *op) | ||
| 575 | { | ||
| 576 | struct rds_message *rm, *tmp, *found = NULL; | ||
| 577 | unsigned long flags; | ||
| 578 | |||
| 579 | spin_lock_irqsave(&conn->c_lock, flags); | ||
| 580 | |||
| 581 | list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) { | ||
| 582 | if (&rm->rdma == op) { | ||
| 583 | atomic_inc(&rm->m_refcount); | ||
| 584 | found = rm; | ||
| 585 | goto out; | ||
| 586 | } | ||
| 587 | } | ||
| 588 | |||
| 589 | list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) { | ||
| 590 | if (&rm->rdma == op) { | ||
| 591 | atomic_inc(&rm->m_refcount); | ||
| 592 | found = rm; | ||
| 593 | break; | ||
| 594 | } | ||
| 595 | } | ||
| 596 | |||
| 597 | out: | ||
| 598 | spin_unlock_irqrestore(&conn->c_lock, flags); | ||
| 599 | |||
| 600 | return found; | ||
| 601 | } | ||
| 602 | EXPORT_SYMBOL_GPL(rds_send_get_message); | ||
| 603 | |||
| 604 | /* | ||
| 605 | * This removes messages from the socket's list if they're on it. The list | 569 | * This removes messages from the socket's list if they're on it. The list |
| 606 | * argument must be private to the caller, we must be able to modify it | 570 | * argument must be private to the caller, we must be able to modify it |
| 607 | * without locks. The messages must have a reference held for their | 571 | * without locks. The messages must have a reference held for their |
