2021-08-23 02:35:30 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause */
|
2016-01-06 17:56:41 +00:00
|
|
|
/*
|
2016-01-22 21:04:58 +00:00
|
|
|
* Copyright(c) 2016 Intel Corporation.
|
2016-01-06 17:56:41 +00:00
|
|
|
*/
|
|
|
|
|
2021-08-23 02:35:30 +00:00
|
|
|
#ifndef DEF_RVTAH_H
|
|
|
|
#define DEF_RVTAH_H
|
|
|
|
|
2016-01-06 17:56:41 +00:00
|
|
|
#include <rdma/rdma_vt.h>
|
|
|
|
|
2020-04-30 19:21:42 +00:00
|
|
|
int rvt_create_ah(struct ib_ah *ah, struct rdma_ah_init_attr *init_attr,
|
|
|
|
struct ib_udata *udata);
|
2020-09-07 12:09:14 +00:00
|
|
|
int rvt_destroy_ah(struct ib_ah *ibah, u32 destroy_flags);
|
2017-04-29 18:41:18 +00:00
|
|
|
int rvt_modify_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr);
|
|
|
|
int rvt_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr);
|
2016-01-06 17:56:41 +00:00
|
|
|
|
|
|
|
#endif /* DEF_RVTAH_H */
|