dpdk: add support for DPDK Bond PMD v3#8953
Closed
lukashino wants to merge 8 commits intoOISF:masterfrom
Closed
Conversation
added 8 commits
June 2, 2023 16:56
Setting rss_conf->rss_key to NULL and rss_key_len to zero avoids warnings about register changes when setting up RSS configuration through RTE flows.
In DPDK 19.11 Suricata does not setup RSS on i40e driver with rte_flow. As a result, it should not be deinitializing RSS configuration with rte_flow as well.
Header checking (AC_CHECK_HEADER) did not work as DPDK 19.11 included rte_eth_bond.h file even if net/bonding driver was disabled. However, it was still not available in ldconfig configuration. For this reason Bond PMD is checked with ldconfig tool. However when installing the DPDK library manually, the user needs to update the entries in ldconfig to be able to find the Bond PMD. Ticket: OISF#6099
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #8953 +/- ##
==========================================
- Coverage 82.39% 82.39% -0.01%
==========================================
Files 969 969
Lines 273558 273559 +1
==========================================
- Hits 225404 225401 -3
- Misses 48154 48158 +4
Flags with carried forward coverage won't be shown. Click here to find out more. |
|
Information: QA ran without warnings. Pipeline 14211 |
victorjulien
approved these changes
Jun 5, 2023
Merged
Member
|
Merged in #8965, thanks! |
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.
Follow-up of #8943
Link to redmine ticket:
Describe changes: