aboutsummaryrefslogtreecommitdiffstats
path: root/include/rdma/rdma_cm.h
diff options
context:
space:
mode:
authorSteve Wise <swise@opengridcomputing.com>2016-10-26 12:36:47 -0700
committerDoug Ledford <dledford@redhat.com>2016-12-14 11:38:28 -0500
commit5042a73d3e9de7bcc2a31adea08ee95bbce998dc (patch)
tree756a334da6be36b8154ac165344735b0aba57ed5 /include/rdma/rdma_cm.h
parentrdma_cm: add rdma_reject_msg() helper function (diff)
downloadlinux-dev-5042a73d3e9de7bcc2a31adea08ee95bbce998dc.tar.xz
linux-dev-5042a73d3e9de7bcc2a31adea08ee95bbce998dc.zip
rdma_cm: add rdma_is_consumer_reject() helper function
Return true if the peer consumer application rejected the connection attempt. Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Steve Wise <swise@opengridcomputing.com> Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/rdma/rdma_cm.h')
-rw-r--r--include/rdma/rdma_cm.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/rdma/rdma_cm.h b/include/rdma/rdma_cm.h
index f11a768be06b..62039c2fd951 100644
--- a/include/rdma/rdma_cm.h
+++ b/include/rdma/rdma_cm.h
@@ -395,5 +395,12 @@ __be64 rdma_get_service_id(struct rdma_cm_id *id, struct sockaddr *addr);
*/
const char *__attribute_const__ rdma_reject_msg(struct rdma_cm_id *id,
int reason);
+/**
+ * rdma_is_consumer_reject - return true if the consumer rejected the connect
+ * request.
+ * @id: Communication identifier that received the REJECT event.
+ * @reason: Value returned in the REJECT event status field.
+ */
+bool rdma_is_consumer_reject(struct rdma_cm_id *id, int reason);
#endif /* RDMA_CM_H */