-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebase default branch (dpdk-2011-focal
)
#33
Merged
gab-arrobo
merged 64 commits into
omec-project:dpdk-2011-focal
from
gab-arrobo:dpdk-2011-focal
Jan 9, 2024
Merged
Rebase default branch (dpdk-2011-focal
)
#33
gab-arrobo
merged 64 commits into
omec-project:dpdk-2011-focal
from
gab-arrobo:dpdk-2011-focal
Jan 9, 2024
Conversation
This file contains 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
kMaxBurst was declared and assigned a value, but not explicitly defined. This can cause issues when linking in cases where a reference may be taken of kMaxBurst (say, passing it to std::min()) and the constant can't be fully optimized out. This was actually fixed years ago in #522 but ended up being reverted accidentally during a refactor in #820. With C++17 now, we don't have to put the definition in a source file, we can just add inline and that takes care of it.
Ensure that kMaxBurst is explicitly defined
- address memseg and mbuf changes - move to meson/ninja build system Signed-off-by: Saikrishna Edupuganti <[email protected]>
ice ddp loading seems reliable when using a PF with this version Signed-off-by: Saikrishna Edupuganti <[email protected]>
IMAGE="ghcr.io/omec-project/upf-epc/bess_build" \ ./container_build.py shell Signed-off-by: Saikrishna Edupuganti <[email protected]>
Signed-off-by: Saikrishna Edupuganti <[email protected]>
test the workflow
Need to address the issues one by one
These changes are needed to be able to build and test bess with GitHub Actions
This bess_build includes the changes needed to build DPDK 20.11
Additionally, remove Travis.yml file that is not needed anymore
* Action for dependabot and check license/copyright * Remove empty line * Add empty line at end of file
* Add GitHub Action for checking code format (C/C++ and Protobuf) * Update GitHub Action to only remove the OS from the matrix * Address issues with format compliance for protobuf files * Add missing file that was not formatted * Update parameters for GitHub Action * Add missing license/copyright header and add an exception
- Update GitHub Actions to build docker image locally during pull request - Use protobuf version 3.20 to fix errors in generated _pb2.py file Signed-off-by: Manoj Gopalakrishnan <[email protected]>
- CNDP BESS port to send/receive n/w packets using AF_XDP socket. - Modify Bess core Makefile to build CNDP port driver. - Dockerfile to build BESS with CNDP. - Add "CndpPortArg" in port_msg.proto file to initialize Bess CNDP port. - Use external BESS PacketPool (rte_mempool/rte_mbuf) with CNDP xskdev. - Example scripts to test Bess CNDP port. - ReadMe file to build docker image and run BESS CNDP example scripts. - GitHub Action for running CNDP tests. Signed-off-by: Manoj Gopalakrishnan <[email protected]>
* Enable GTPu path monitoring
ajaythakurintel
approved these changes
Jan 9, 2024
thakurajayL
approved these changes
Jan 9, 2024
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.
This PR includes NO changes. The only thing that is done here is to rebase the
dpdk-2011-focal
branch based on themaster
branch