首页 > 其他 > 详细

DPDK Introduction

时间:2015-12-21 18:32:10      阅读:215      评论:0      收藏:0      [点我收藏+]

Data Plane Development Kit(DPDK) is a set of libraries and drivers for fast packet processing. It was designed to run on any processors. The first supported CPU was Intel x86 and it is now extended to IBM Power 8, EZchip TILE-Gx and ARM. It runs mostly in Linux userland. A FreeBSD port is available for a subset of DPDK features.

Main libraries
  • multicore framework
  • huge page memory
  • ring buffers
  • poll-mode drivers
The DPDK includes data plane libraries and optimized NIC drivers for the following
  • A queue manager implements lockless queues
  • A buffer manager pre-allocates fixed size buffers
  • A memory manager allocates pools of objects in memory and uses a ring to store free objects; ensures that objects are spread equally on all DRAM channels
  • Poll mode drivers (PMD) are designed to work without asynchronous notifications, reducing overhead
  • A packet framework – set of libraries that are helpers to develop packet processing

All libraries are stored in the dpdk/lib/librte_* directories

What it is not

DPDK is not a networking stack and does not provide functions such as Layer-3 forwarding, IPsec, firewalling, etc. Within the tree, however, various application examples are included to help developing such features.

References

DPDK Introduction

原文:http://www.cnblogs.com/luckysimple/p/5063988.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!