Searched refs:rwq_ind_table (Results 1 - 6 of 6) sorted by path

/freebsd-11-stable/contrib/ofed/libibverbs/
H A Dcmd.c2026 struct ibv_rwq_ind_table *rwq_ind_table,
2071 rwq_ind_table->ind_tbl_handle = resp->ind_tbl_handle;
2072 rwq_ind_table->ind_tbl_num = resp->ind_tbl_num;
2073 rwq_ind_table->context = context;
2077 int ibv_cmd_destroy_rwq_ind_table(struct ibv_rwq_ind_table *rwq_ind_table) argument
2084 cmd.ind_tbl_handle = rwq_ind_table->ind_tbl_handle;
2086 if (write(rwq_ind_table->context->cmd_fd, &cmd, sizeof(cmd)) != sizeof(cmd))
2024 ibv_cmd_create_rwq_ind_table(struct ibv_context *context, struct ibv_rwq_ind_table_init_attr *init_attr, struct ibv_rwq_ind_table *rwq_ind_table, struct ibv_create_rwq_ind_table *cmd, size_t cmd_core_size, size_t cmd_size, struct ibv_create_rwq_ind_table_resp *resp, size_t resp_core_size, size_t resp_size) argument
H A Ddriver.h294 struct ibv_rwq_ind_table *rwq_ind_table,
301 int ibv_cmd_destroy_rwq_ind_table(struct ibv_rwq_ind_table *rwq_ind_table);
H A Dverbs.h1528 int (*destroy_rwq_ind_table)(struct ibv_rwq_ind_table *rwq_ind_table);
2243 * @rwq_ind_table: The Indirection Table to destroy.
2248 static inline int ibv_destroy_rwq_ind_table(struct ibv_rwq_ind_table *rwq_ind_table) argument
2252 vctx = verbs_get_ctx_op(rwq_ind_table->context, destroy_rwq_ind_table);
2256 return vctx->destroy_rwq_ind_table(rwq_ind_table);
/freebsd-11-stable/contrib/ofed/libmlx5/
H A Dmlx5.h677 int mlx5_destroy_rwq_ind_table(struct ibv_rwq_ind_table *rwq_ind_table);
H A Dverbs.c2201 int mlx5_destroy_rwq_ind_table(struct ibv_rwq_ind_table *rwq_ind_table) argument
2205 ret = ibv_cmd_destroy_rwq_ind_table(rwq_ind_table);
2210 free(rwq_ind_table);
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_verbs.c1710 struct ib_rwq_ind_table *rwq_ind_table; local
1718 rwq_ind_table = device->create_rwq_ind_table(device,
1720 if (IS_ERR(rwq_ind_table))
1721 return rwq_ind_table;
1723 rwq_ind_table->ind_tbl = init_attr->ind_tbl;
1724 rwq_ind_table->log_ind_tbl_size = init_attr->log_ind_tbl_size;
1725 rwq_ind_table->device = device;
1726 rwq_ind_table->uobject = NULL;
1727 atomic_set(&rwq_ind_table->usecnt, 0);
1730 atomic_inc(&rwq_ind_table
1740 ib_destroy_rwq_ind_table(struct ib_rwq_ind_table *rwq_ind_table) argument
[all...]

Completed in 155 milliseconds