Lines Matching defs:cqb
706 struct mlx5_ib_cq *cq, int entries, u32 **cqb,
756 *cqb = kvzalloc(*inlen, GFP_KERNEL);
757 if (!*cqb) {
762 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas);
765 cqc = MLX5_ADDR_OF(create_cq_in, *cqb, cq_context);
818 MLX5_SET(create_cq_in, *cqb, uid, context->devx_uid);
822 kvfree(*cqb);
856 u32 **cqb, int *index, int *inlen)
879 *cqb = kvzalloc(*inlen, GFP_KERNEL);
880 if (!*cqb) {
885 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas);
888 cqc = MLX5_ADDR_OF(create_cq_in, *cqb, cq_context);
930 u32 *cqb = NULL;
957 err = create_cq_user(dev, udata, cq, entries, &cqb, &cqe_size,
963 err = create_cq_kernel(dev, cq, entries, cqe_size, &cqb,
977 cqc = MLX5_ADDR_OF(create_cq_in, cqb, cq_context);
989 err = mlx5_core_create_cq(dev->mdev, &cq->mcq, cqb, inlen, out, sizeof(out));
1009 kvfree(cqb);
1016 kvfree(cqb);