Current Path: > > usr > include > rdma
Operation : Linux premium107.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 198.54.126.246 | Your IP: 216.73.216.181 Domains : 1034 Domain(s) Permission : [ 0755 ]
| Name | Type | Size | Last Modified | Actions |
|---|---|---|---|---|
| hfi | Directory | - | - | |
| bnxt_re-abi.h | File | 3514 bytes | January 22 2026 12:58:36. | |
| cxgb4-abi.h | File | 3122 bytes | January 22 2026 12:58:36. | |
| efa-abi.h | File | 2961 bytes | January 22 2026 12:58:36. | |
| hns-abi.h | File | 2207 bytes | January 22 2026 12:58:36. | |
| ib_user_ioctl_cmds.h | File | 9430 bytes | January 22 2026 12:58:36. | |
| ib_user_ioctl_verbs.h | File | 7882 bytes | January 22 2026 12:58:36. | |
| ib_user_mad.h | File | 8530 bytes | January 22 2026 12:58:36. | |
| ib_user_sa.h | File | 2305 bytes | January 22 2026 12:58:36. | |
| ib_user_verbs.h | File | 28965 bytes | January 22 2026 12:58:36. | |
| irdma-abi.h | File | 2192 bytes | January 22 2026 12:58:36. | |
| mana-abi.h | File | 1185 bytes | January 22 2026 12:58:36. | |
| mlx4-abi.h | File | 5117 bytes | January 22 2026 12:58:36. | |
| mlx5-abi.h | File | 13869 bytes | January 22 2026 12:58:36. | |
| mlx5_user_ioctl_cmds.h | File | 10745 bytes | January 22 2026 12:58:36. | |
| mlx5_user_ioctl_verbs.h | File | 3583 bytes | January 22 2026 12:58:36. | |
| mthca-abi.h | File | 3055 bytes | January 22 2026 12:58:36. | |
| ocrdma-abi.h | File | 4116 bytes | January 22 2026 12:58:36. | |
| qedr-abi.h | File | 4307 bytes | January 22 2026 12:58:36. | |
| rdma_netlink.h | File | 14987 bytes | January 22 2026 12:58:36. | |
| rdma_user_cm.h | File | 7132 bytes | January 22 2026 12:58:36. | |
| rdma_user_ioctl.h | File | 3751 bytes | January 22 2026 12:58:36. | |
| rdma_user_ioctl_cmds.h | File | 2607 bytes | January 22 2026 12:58:36. | |
| rdma_user_rxe.h | File | 4779 bytes | January 22 2026 12:58:36. | |
| rvt-abi.h | File | 1745 bytes | January 22 2026 12:58:36. | |
| siw-abi.h | File | 3404 bytes | January 22 2026 12:58:36. | |
| vmw_pvrdma-abi.h | File | 8011 bytes | January 22 2026 12:58:36. |
/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
/*
* This file contains defines, structures, etc. that are used
* to communicate between kernel and user code.
*/
#ifndef RVT_ABI_USER_H
#define RVT_ABI_USER_H
#include <linux/types.h>
#include <rdma/ib_user_verbs.h>
#ifndef RDMA_ATOMIC_UAPI
#define RDMA_ATOMIC_UAPI(_type, _name) struct{ _type val; } _name
#endif
struct rvt_wqe_sge {
__aligned_u64 addr;
__u32 length;
__u32 lkey;
};
/*
* This structure is used to contain the head pointer, tail pointer,
* and completion queue entries as a single memory allocation so
* it can be mmap'ed into user space.
*/
struct rvt_cq_wc {
/* index of next entry to fill */
RDMA_ATOMIC_UAPI(__u32, head);
/* index of next ib_poll_cq() entry */
RDMA_ATOMIC_UAPI(__u32, tail);
/* these are actually size ibcq.cqe + 1 */
struct ib_uverbs_wc uqueue[];
};
/*
* Receive work request queue entry.
* The size of the sg_list is determined when the QP (or SRQ) is created
* and stored in qp->r_rq.max_sge (or srq->rq.max_sge).
*/
struct rvt_rwqe {
__u64 wr_id;
__u8 num_sge;
__u8 padding[7];
struct rvt_wqe_sge sg_list[];
};
/*
* This structure is used to contain the head pointer, tail pointer,
* and receive work queue entries as a single memory allocation so
* it can be mmap'ed into user space.
* Note that the wq array elements are variable size so you can't
* just index into the array to get the N'th element;
* use get_rwqe_ptr() for user space and rvt_get_rwqe_ptr()
* for kernel space.
*/
struct rvt_rwq {
/* new work requests posted to the head */
RDMA_ATOMIC_UAPI(__u32, head);
/* receives pull requests from here. */
RDMA_ATOMIC_UAPI(__u32, tail);
struct rvt_rwqe wq[];
};
#endif /* RVT_ABI_USER_H */
SILENT KILLER Tool