Lines Matching refs:cqb
716 struct mlx5_ib_cq *cq, int entries, u32 **cqb,
777 *cqb = kvzalloc(*inlen, GFP_KERNEL);
778 if (!*cqb) {
783 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas);
786 cqc = MLX5_ADDR_OF(create_cq_in, *cqb, cq_context);
843 MLX5_SET(create_cq_in, *cqb, uid, context->devx_uid);
847 kvfree(*cqb);
881 u32 **cqb, int *index, int *inlen)
904 *cqb = kvzalloc(*inlen, GFP_KERNEL);
905 if (!*cqb) {
910 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas);
913 cqc = MLX5_ADDR_OF(create_cq_in, *cqb, cq_context);
955 u32 *cqb = NULL;
982 err = create_cq_user(dev, udata, cq, entries, &cqb, &cqe_size,
988 err = create_cq_kernel(dev, cq, entries, cqe_size, &cqb,
1002 cqc = MLX5_ADDR_OF(create_cq_in, cqb, cq_context);
1014 err = mlx5_core_create_cq(dev->mdev, &cq->mcq, cqb, inlen, out, sizeof(out));
1034 kvfree(cqb);
1041 kvfree(cqb);