Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kernel-headers/rdma/mana-abi.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum mana_ib_create_cq_flags {

struct mana_ib_create_cq {
__aligned_u64 buf_addr;
__u16 flags;
__u16 comp_mask;
__u16 reserved0;
__u32 reserved1;
};
Expand Down
5 changes: 5 additions & 0 deletions kernel-headers/rdma/rdma_netlink.h
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,11 @@ enum rdma_nldev_attr {
RDMA_NLDEV_ATTR_FRMR_POOL_PINNED_HANDLES, /* u32 */
RDMA_NLDEV_ATTR_FRMR_POOL_KEY_KERNEL_VENDOR_KEY, /* u64 */

/*
* Resource summary entry maximum value.
*/
RDMA_NLDEV_ATTR_RES_SUMMARY_ENTRY_MAX, /* u64 */

/*
* Always the end
*/
Expand Down
2 changes: 1 addition & 1 deletion providers/mana/cq.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ struct ibv_cq *mana_create_cq(struct ibv_context *context, int cqe,

cmd_drv = &cmd.drv_payload;
cmd_drv->buf_addr = (uintptr_t)cq->buf;
cmd_drv->flags = flags;
cmd_drv->comp_mask = flags;
resp.cqid = UINT32_MAX;

ret = ibv_cmd_create_cq(context, cq->cqe, channel, comp_vector,
Expand Down
Loading