Giter VIP home page Giter VIP logo

acn-router-project's Introduction

Setting up DPDK

Install dependencies

	apt-get update
	apt-get install meson

Compile DPDK

	cd dpdk
	meson build
	cd build
	ninja
	ninja install
	ldconfig

Load the vfio-pci driver :

	modprobe uio
	modprobe uio_pci_generic

Use the tool dpdk-devbind.py to bind the VirtIO NICs to the uio_pci_generic driver. (Find out how to do this, the tool is self-explanatory.)

	cd [root_repo]
	dpdk/usertools/dpdk-devbind.py --h

Setup hugetlbfs huge pages for DPDK

	mkdir /mnt/huge
	mount -t hugetlbfs nodev /mnt/huge

Statically allocate 256 2MB huge pages

	echo 256 > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages

Compiling your App

This example project comes with a CMakeFile and a simple wrapper that initializes DPDK for you. Run the following steps to build the router app

	cd [root_repo]
	cmake .
	make

That's all!

DPDK Reference

For this project, we use DPDK 20.11 (LTS). The comprehensive DPDK documentation can be found at:

Compiling gtest

Installing/Compiling gtest is no longer necessary, VM contains compiled library.

Remark on ACN-VM

add recv_from_device() utility function

The virtual switch behaves different from real hardware. It sets rx = tx queues with automatic load balancing (even when not configured). The recv_from_device() function fixes this issue by receiving from all available queues.

acn-router-project's People

Contributors

gallenmu avatar supereg avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.