include/uapi/rdma/mana-abi.h
Source file repositories/reference/linux-study-clean/include/uapi/rdma/mana-abi.h
File Facts
- System
- Linux kernel
- Corpus path
include/uapi/rdma/mana-abi.h- Extension
.h- Size
- 1616 bytes
- Lines
- 91
- Domain
- Repository Root And Misc
- Bucket
- include
- Inferred role
- Repository Root And Misc: implementation source
- Status
- source implementation candidate
Why This File Exists
Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/types.hrdma/ib_user_ioctl_verbs.h
Detected Declarations
struct mana_ib_create_cqstruct mana_ib_create_cq_respstruct mana_ib_create_qpstruct mana_ib_create_qp_respstruct mana_ib_create_rc_qpstruct mana_ib_create_rc_qp_respstruct mana_ib_create_wqstruct mana_ib_create_qp_rssstruct rss_resp_entrystruct mana_ib_create_qp_rss_respenum mana_ib_create_cq_flagsenum mana_ib_rx_hash_function_flags
Annotated Snippet
struct mana_ib_create_cq {
__aligned_u64 buf_addr;
__u16 flags;
__u16 reserved0;
__u32 reserved1;
};
struct mana_ib_create_cq_resp {
__u32 cqid;
__u32 reserved;
};
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_rc_qp {
__aligned_u64 queue_buf[4];
__u32 queue_size[4];
};
struct mana_ib_create_rc_qp_resp {
__u32 queue_id[4];
};
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
Annotation
- Immediate include surface: `linux/types.h`, `rdma/ib_user_ioctl_verbs.h`.
- Detected declarations: `struct mana_ib_create_cq`, `struct mana_ib_create_cq_resp`, `struct mana_ib_create_qp`, `struct mana_ib_create_qp_resp`, `struct mana_ib_create_rc_qp`, `struct mana_ib_create_rc_qp_resp`, `struct mana_ib_create_wq`, `struct mana_ib_create_qp_rss`, `struct rss_resp_entry`, `struct mana_ib_create_qp_rss_resp`.
- Atlas domain: Repository Root And Misc / include.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.