@@ -1608,12 +1608,10 @@ struct ibv_context {
enum ibv_cq_init_attr_mask {
IBV_CQ_INIT_ATTR_MASK_FLAGS = 1 << 0,
- IBV_CQ_INIT_ATTR_MASK_RESERVED = 1 << 1
};
enum ibv_create_cq_attr_flags {
IBV_CREATE_CQ_ATTR_SINGLE_THREADED = 1 << 0,
- IBV_CREATE_CQ_ATTR_RESERVED = 1 << 1,
};
struct ibv_cq_init_attr_ex {
@@ -574,7 +574,8 @@ struct ibv_cq_ex *mlx4_create_cq_ex(struct ibv_context *context,
.comp_mask = cq_attr->comp_mask,
.flags = cq_attr->flags};
- if (!check_comp_mask(cq_attr_c.comp_mask, IBV_CQ_INIT_ATTR_MASK_RESERVED - 1)) {
+ if (!check_comp_mask(cq_attr_c.comp_mask,
+ IBV_CQ_INIT_ATTR_MASK_FLAGS)) {
errno = EINVAL;
return NULL;
}