Current Path: > > usr > include > > rdma >
Operation : Linux premium131.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 : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
hfi | Directory | - | - | |
bnxt_re-abi.h | File | 3514 bytes | July 04 2025 12:29:18. | |
cxgb4-abi.h | File | 3122 bytes | July 04 2025 12:29:18. | |
efa-abi.h | File | 2961 bytes | July 04 2025 12:29:18. | |
hns-abi.h | File | 2207 bytes | July 04 2025 12:29:18. | |
ib_user_ioctl_cmds.h | File | 9430 bytes | July 04 2025 12:29:18. | |
ib_user_ioctl_verbs.h | File | 7882 bytes | July 04 2025 12:29:18. | |
ib_user_mad.h | File | 8530 bytes | July 04 2025 12:29:18. | |
ib_user_sa.h | File | 2305 bytes | July 04 2025 12:29:18. | |
ib_user_verbs.h | File | 28965 bytes | July 04 2025 12:29:18. | |
irdma-abi.h | File | 2192 bytes | July 04 2025 12:29:18. | |
mana-abi.h | File | 1185 bytes | July 04 2025 12:29:18. | |
mlx4-abi.h | File | 5117 bytes | July 04 2025 12:29:18. | |
mlx5-abi.h | File | 13869 bytes | July 04 2025 12:29:18. | |
mlx5_user_ioctl_cmds.h | File | 10745 bytes | July 04 2025 12:29:18. | |
mlx5_user_ioctl_verbs.h | File | 3583 bytes | July 04 2025 12:29:18. | |
mthca-abi.h | File | 3055 bytes | July 04 2025 12:29:18. | |
ocrdma-abi.h | File | 4116 bytes | July 04 2025 12:29:18. | |
qedr-abi.h | File | 4307 bytes | July 04 2025 12:29:18. | |
rdma_netlink.h | File | 14987 bytes | July 04 2025 12:29:18. | |
rdma_user_cm.h | File | 7132 bytes | July 04 2025 12:29:18. | |
rdma_user_ioctl.h | File | 3751 bytes | July 04 2025 12:29:18. | |
rdma_user_ioctl_cmds.h | File | 2607 bytes | July 04 2025 12:29:18. | |
rdma_user_rxe.h | File | 4779 bytes | July 04 2025 12:29:18. | |
rvt-abi.h | File | 1745 bytes | July 04 2025 12:29:18. | |
siw-abi.h | File | 3404 bytes | July 04 2025 12:29:18. | |
vmw_pvrdma-abi.h | File | 8011 bytes | July 04 2025 12:29:18. |
/* 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