从内核空间中的块设备读取

发布于 2024-08-10 14:45:42 字数 120 浏览 4 评论 0原文

我正在编写一个内核模块,需要从现有的块设备执行读取。 (/dev/东西)。

有谁知道有任何其他模块可以执行这些操作,我可以用作参考吗?

欢迎任何指点

(Linux.2.6.30)

I am writing a kernel module and need to perform reads from an existing block device. (/dev/something).

Does anyone know of any other modules that do these that I can use as reference ?

Any pointers would be welcome

(Linux.2.6.30)

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

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

发布评论

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

评论(2

过气美图社 2024-08-17 14:45:42

如果您确实必须使用 filp_open、filp​​_close、vfs_read 和 vfs_write 函数。

filp_open 的描述指出“如果确实需要,这是从内核空间打开文件的帮助程序。但一般来说您不应该这样做,所以请继续,这里没有什么可看的..”

有一篇很棒的文章“让我发疯 - 你永远不应该在内核中做的事情”位于 http://www.linuxjournal.com/文章/8110

If you really absolutely must then use the filp_open, filp_close, vfs_read and vfs_write functions.

The description for for filp_open states "This is the helper to open a file from kernelspace if you really have to. But in generally you should not do this, so please move along, nothing to see here.."

There is an excellent article "Driving Me Nuts - Things You Never Should Do in the Kernel" at http://www.linuxjournal.com/article/8110

骑趴 2024-08-17 14:45:42

您可以查看任何硬盘设备驱动程序。

You can look at any hard disk device driver.

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