/usr/include/rdma
NameSizeModeActions
hfi/-0755rm
bnxt_re-abi.h35140644editdlrm
cxgb4-abi.h31220644editdlrm
efa-abi.h29610644editdlrm
hns-abi.h22070644editdlrm
ib_user_ioctl_cmds.h94300644editdlrm
ib_user_ioctl_verbs.h78820644editdlrm
ib_user_mad.h85300644editdlrm
ib_user_sa.h23050644editdlrm
ib_user_verbs.h289650644editdlrm
irdma-abi.h21920644editdlrm
mana-abi.h11850644editdlrm
mlx4-abi.h51170644editdlrm
mlx5-abi.h138690644editdlrm
mlx5_user_ioctl_cmds.h107450644editdlrm
mlx5_user_ioctl_verbs.h35830644editdlrm
mthca-abi.h30550644editdlrm
ocrdma-abi.h41160644editdlrm
qedr-abi.h43070644editdlrm
rdma_netlink.h149870644editdlrm
rdma_user_cm.h71320644editdlrm
rdma_user_ioctl.h37510644editdlrm
rdma_user_ioctl_cmds.h26070644editdlrm
rdma_user_rxe.h47790644editdlrm
rvt-abi.h17450644editdlrm
siw-abi.h34040644editdlrm
vmw_pvrdma-abi.h80110644editdlrm
Edit: /usr/include/rdma/mana-abi.h (1185B)
/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) */ /* * Copyright (c) 2022, Microsoft Corporation. All rights reserved. */ #ifndef MANA_ABI_USER_H #define MANA_ABI_USER_H #include #include /* * Increment this value if any changes that break userspace ABI * compatibility are made. */ #define MANA_IB_UVERBS_ABI_VERSION 1 struct mana_ib_create_cq { __aligned_u64 buf_addr; }; struct mana_ib_create_qp { __aligned_u64 sq_buf_addr; __u32 sq_buf_size; __u32 port; }; struct mana_ib_create_qp_resp { __u32 sqid; __u32 cqid; __u32 tx_vp_offset; __u32 reserved; }; struct mana_ib_create_wq { __aligned_u64 wq_buf_addr; __u32 wq_buf_size; __u32 reserved; }; /* RX Hash function flags */ enum mana_ib_rx_hash_function_flags { MANA_IB_RX_HASH_FUNC_TOEPLITZ = 1 << 0, }; struct mana_ib_create_qp_rss { __aligned_u64 rx_hash_fields_mask; __u8 rx_hash_function; __u8 reserved[7]; __u32 rx_hash_key_len; __u8 rx_hash_key[40]; __u32 port; }; struct rss_resp_entry { __u32 cqid; __u32 wqid; }; struct mana_ib_create_qp_rss_resp { __aligned_u64 num_entries; struct rss_resp_entry entries[64]; }; #endif