af_xdp: Resize the XSPMAP to num of rxq in xdp_onload_prepare#322
Open
zhuyifei1999 wants to merge 1 commit intoXilinx-CNS:masterfrom
Open
af_xdp: Resize the XSPMAP to num of rxq in xdp_onload_prepare#322zhuyifei1999 wants to merge 1 commit intoXilinx-CNS:masterfrom
zhuyifei1999 wants to merge 1 commit intoXilinx-CNS:masterfrom
Conversation
xdp_tstamp.c currectly hardcodes the XSKMAP size to 4, but it redirects to XSKs based on ctx->rx_queue_index. We can look up the number of queues with an ethtool ioctl and resize the XSKMAP before loading the map into the kernel. The non-xdp_tstamp path works fine because xdp_map_create in efhw/af_xdp.c creates max_entries = nic->vi_lim. Signed-off-by: YiFei Zhu <zhuyifei@google.com>
a2dcc16 to
e04fb0a
Compare
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.
xdp_tstamp.c currectly hardcodes the XSKMAP size to 4, but it redirects to XSKs based on ctx->rx_queue_index. We can look up the number of queues with an ethtool ioctl and resize the XSKMAP before loading the map into the kernel.
The non-xdp_tstamp path works fine because xdp_map_create in efhw/af_xdp.c creates max_entries = nic->vi_lim.