将用户空间缓冲区传递给内核

发布于 2024-11-06 06:07:13 字数 201 浏览 3 评论 0原文

我想比较使用 DMA 和普通 skb_copy_datagram_iovec()skb 从内核复制到用户空间时的性能。我创建一个模块来测试。有人可以告诉我如何从用户空间创建一个大缓冲区并将其传递到我的模块(因为 tcp_recvmsg() 从用户空间传递一个 iovec )。任何建议表示赞赏。提前致谢!

I want to compare the performance when we copy skb from kernel to userspace using DMA and normal skb_copy_datagram_iovec(). I create a module to test. May anyone show me how we can create a big buffer from userspace and pass it to my module (as tcp_recvmsg() is passed an iovec from userspace). Any suggestions are appreciated. Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声无音无过去 2024-11-13 06:07:13

编写一个Linux字符设备驱动程序并实现writev方法。有关详细信息,请查看 Linux 设备驱动程序最新版本。

Write a Linux character device driver and implement the writev method. For details check out Linux Device Drivers latest edition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文