SR-IOV(single root input/output virtualization) is an I/O virtualization technology that allows one PCIe device to appear as many separate PCIe devices. This functionality is achieved by introducing the concept of VF(Virtual functions) and PF(Physical functions). PFs are full-featured PCIe network functions; VFs are “lightweight” network functions that lack configuration resources.
Much has been said about SR-IOV and it’s benefits. The question we are addressing here is, what is the effect on the performance or latency of our NICs as we make these VFs/PFs? But before that some basics are necessary.
Let's begin with the most trivial question; How to make…
The DPDK timer library is used to provide timer services to DPDK applications. Some appreciable features of this library are:
With the Timer Library, the user can add, delete and/or restart a timer. There is a user-defined call-back function associated with each timer. This call-back function is called by __rte_timer_manage whenever a timer expires.
As the application may use multiple timers, the library holds these timers…