2020-07-19 15:25:21 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
|
2006-06-18 11:37:29 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 Intel Corporation. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2020-07-19 15:25:21 +08:00
|
|
|
#ifndef RDMA_CM_IB_H
|
2006-06-18 11:37:29 +08:00
|
|
|
#define RDMA_CM_IB_H
|
|
|
|
|
|
|
|
#include <rdma/rdma_cm.h>
|
|
|
|
|
|
|
|
/**
|
2018-01-08 23:04:45 +08:00
|
|
|
* rdma_set_ib_path - Manually sets the path record used to establish a
|
2006-06-18 11:37:29 +08:00
|
|
|
* connection.
|
|
|
|
* @id: Connection identifier associated with the request.
|
|
|
|
* @path_rec: Reference to the path record
|
|
|
|
*
|
|
|
|
* This call permits a user to specify routing information for rdma_cm_id's
|
2018-01-08 23:04:45 +08:00
|
|
|
* bound to InfiniBand devices. It is called on the client side of a
|
2006-06-18 11:37:29 +08:00
|
|
|
* connection and replaces the call to rdma_resolve_route.
|
|
|
|
*/
|
2018-01-08 23:04:45 +08:00
|
|
|
int rdma_set_ib_path(struct rdma_cm_id *id,
|
|
|
|
struct sa_path_rec *path_rec);
|
2006-06-18 11:37:29 +08:00
|
|
|
|
2007-02-16 09:00:18 +08:00
|
|
|
/* Global qkey for UDP QPs and multicast groups. */
|
|
|
|
#define RDMA_UDP_QKEY 0x01234567
|
2006-12-01 08:44:16 +08:00
|
|
|
|
2006-06-18 11:37:29 +08:00
|
|
|
#endif /* RDMA_CM_IB_H */
|