diff options
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/rdma_cm.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/rdma/rdma_cm.h b/include/rdma/rdma_cm.h index 2d6a7705eae7..010f876f41d8 100644 --- a/include/rdma/rdma_cm.h +++ b/include/rdma/rdma_cm.h | |||
@@ -314,4 +314,18 @@ int rdma_join_multicast(struct rdma_cm_id *id, struct sockaddr *addr, | |||
314 | */ | 314 | */ |
315 | void rdma_leave_multicast(struct rdma_cm_id *id, struct sockaddr *addr); | 315 | void rdma_leave_multicast(struct rdma_cm_id *id, struct sockaddr *addr); |
316 | 316 | ||
317 | /** | ||
318 | * rdma_set_service_type - Set the type of service associated with a | ||
319 | * connection identifier. | ||
320 | * @id: Communication identifier to associated with service type. | ||
321 | * @tos: Type of service. | ||
322 | * | ||
323 | * The type of service is interpretted as a differentiated service | ||
324 | * field (RFC 2474). The service type should be specified before | ||
325 | * performing route resolution, as existing communication on the | ||
326 | * connection identifier may be unaffected. The type of service | ||
327 | * requested may not be supported by the network to all destinations. | ||
328 | */ | ||
329 | void rdma_set_service_type(struct rdma_cm_id *id, int tos); | ||
330 | |||
317 | #endif /* RDMA_CM_H */ | 331 | #endif /* RDMA_CM_H */ |