Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1279273
  • 博文数量: 168
  • 博客积分: 3483
  • 博客等级: 中校
  • 技术积分: 1696
  • 用 户 组: 普通用户
  • 注册时间: 2006-02-06 13:17
文章分类

全部博文(168)

文章存档

2015年(6)

2014年(9)

2013年(47)

2012年(11)

2011年(13)

2010年(18)

2009年(11)

2008年(42)

2007年(11)

分类: LINUX

2012-12-15 12:18:50

http://www.mjmwired.net/kernel/Documentation/networking/packet_mmap.txt
看PACKET_MMAP的介绍,mmap 一个ring buffer到用户空间 poll 读取,减少系统调用和内存拷贝。


PF_RING也是使用mmap ring buf, poll  下面mark web上面二者比较的一些讨论?
  [Ntop-misc] PF_RING or PACKET_MMAP?  (一个讨论两者的zero copy机制差别的帖子)
    
  Comparison between packet_mmap and pf_ring  (一个讨论比较两者基础性能帖子,说pf_ring没有DNA和修改驱动仍然更快)

   

  From the kernel to the user space (DMA)

   

I read your blog post, and it seems that PACKET_MMAP, is almost the same idea, that the one I proposed (mapping the DMA directly in the user-land), however, mapping the DMA directly in the userland makes it a real 0 copy (that's what I understand) while using PACKET_MMAP is only 0 copy from the kernel to the userland, but because you still have a copy from the DMA to the ring buffer of PACKET_MMAP, no ? but the advantage of PACKET_MMAP, is that you do not need to rewrite any driver. – 

  Improving Passive Packet Capture: Beyond Device Polling
    


目前能看到的是, PACKET_MMAP只支持内核和用户态之间zero copy,但是内核里面还有一次ring buffer到DMA拷贝;

而PF_RING 通过DNA支持真正的zero copy,具体实现方案有待进一步研究,RTFS



---------------------------------------------------------------------------------
相关研究讨论的帖子

源自BSD的类似技术netmap

阅读(3082) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~