热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

pci_alloc_consistent和dma_alloc_coherent之间的区别

如何解决《pci_alloc_consistent和dma_alloc_coherent之间的区别》经验,为你挑选了1个好方法。

我正在研究基于pcie的网络驱动程序.不同的示例使用pci_alloc_consistentdma_alloc_coherent之一来获取传输和接收描述符的内存.哪一个更好,如果有的话两者有什么区别?



1> Milan..:

差异很微妙但非常重要. pci_alloc_consistent()是旧的功能两个和传统的驱动程序仍然使用它.现在,pci_alloc_consistent()只是打电话dma_alloc_coherent().

区别?已分配内存的类型.

pci_alloc_consistent()- 分配类型的内存GFP_ATOMIC.分配不会休眠,用于例如中断处理程序,下半部分.

dma_alloc_coherent() - 您自己指定要分配的内存类型.GFP_ATOMIC除非您需要,否则不应使用高优先级内存,在大多数情况下,您可以使用 GFP_KERNEL分配.

内核3.18的定义pci_alloc_consistent()很简单,即:

 static inline void *
 pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
                      dma_addr_t *dma_handle)
 {
         return dma_alloc_coherent(hwdev == NULL ? NULL : &hwdev->dev, size, dma_handle, GFP_ATOMIC);
 }

简而言之,使用dma_alloc_coherent().


推荐阅读
author-avatar
diuhunpo_813
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有