RE: [PATCH rdma-next 2/3] RDMA/mana_ib: Implement uapi to create and destroy RC QP

From: Konstantin Taranov
Date: Tue May 21 2024 - 04:48:48 EST


>
> Need to change this comment as RC is supported now.
>

Thanks, fixed.

>
> You are adding new UAPI without changing
> MANA_IB_UVERBS_ABI_VERSION.
>
> For this use-case, I think it's okay because it will fail to create CQ before this.
> But it may not be a good customer experience for RC usage.

ABI versions are for resolving incompatibilities in API, and not for tracking features.
So If a user fails to create an RC QP it means the kernel is old and does not have this feature.
The customer experience is not affected.

Increase in the abi version would invalidate all previous kernels, preventing clients to use the
many versions of kernels and rdma-core together. As a result, breaking the customer experience.

Konstantin