diff options
author | Or Gerlitz <ogerlitz@voltaire.com> | 2006-09-12 12:03:33 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-09-22 18:22:54 -0400 |
commit | 07eeec0627e93a1a753c4df004a97a4d0a7b9ceb (patch) | |
tree | a64ef6da30f93a2443c8a3131e1cfc0d04c721d0 /include/rdma | |
parent | a70d059009f4a207e2a9c794f40fc8c870096d54 (diff) |
RDMA/cma: Document rdma_destroy_id() function
Clarify that rdma_destroy_id cancels outstanding asynchronous operations on the
Associated id.
Signed-off-by: Or Gerlitz <ogerlitz@voltaire.com>
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/rdma_cm.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/rdma/rdma_cm.h b/include/rdma/rdma_cm.h index 402c63d7226b..1566be568ab6 100644 --- a/include/rdma/rdma_cm.h +++ b/include/rdma/rdma_cm.h | |||
@@ -117,6 +117,14 @@ struct rdma_cm_id { | |||
117 | struct rdma_cm_id *rdma_create_id(rdma_cm_event_handler event_handler, | 117 | struct rdma_cm_id *rdma_create_id(rdma_cm_event_handler event_handler, |
118 | void *context, enum rdma_port_space ps); | 118 | void *context, enum rdma_port_space ps); |
119 | 119 | ||
120 | /** | ||
121 | * rdma_destroy_id - Destroys an RDMA identifier. | ||
122 | * | ||
123 | * @id: RDMA identifier. | ||
124 | * | ||
125 | * Note: calling this function has the effect of canceling in-flight | ||
126 | * asynchronous operations associated with the id. | ||
127 | */ | ||
120 | void rdma_destroy_id(struct rdma_cm_id *id); | 128 | void rdma_destroy_id(struct rdma_cm_id *id); |
121 | 129 | ||
122 | /** | 130 | /** |