ionic: Add Shared Receive Queue (SRQ) support - #1799
Open
abhijitG-xlnx wants to merge 4 commits into
Open
Conversation
Signed-off-by: Abhijit Gangurde <abhijit.gangurde@amd.com>
Reorganizing RQ initialization for Shared Receive Queue (SRQ) support Signed-off-by: Abhijit Gangurde <abhijit.gangurde@amd.com>
Eliminate the stack of free rq_meta entries. Instead, maintain rq_meta as a parallel array to rq WQEs, indexed by the WQE index. Signed-off-by: Abhijit Gangurde <abhijit.gangurde@amd.com>
Implement provider support for shared receive queue Signed-off-by: Abhijit Gangurde <abhijit.gangurde@amd.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Shared Receive Queue (SRQ) support to the ionic RDMA provider, enabling multiple QPs to share a single receive buffer pool.
Patch 1: updates the kernel ABI header, renaming the SRQ response field from qpid to srqid.
Patch 2: refactors RQ helpers to accept struct ionic_rq * instead of struct ionic_qp *, decoupling receive queue operations from the QP.
Patch 3: removes the freelist-based rq_meta (meta->next, meta_head, meta_idx) and replaces it with a direct-indexed parallel array.
Patch 4: adds srq verbs operations.