从内核空间中的块设备读取
我正在编写一个内核模块,需要从现有的块设备执行读取。 (/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您确实必须使用 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
andvfs_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
您可以查看任何硬盘设备驱动程序。
You can look at any hard disk device driver.