Reading from a block device in kernel space

我怕爱的太早我们不能终老 提交于 2019-12-21 22:25:50

问题


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)


回答1:


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




回答2:


You can look at any hard disk device driver.



来源:https://stackoverflow.com/questions/1695678/reading-from-a-block-device-in-kernel-space

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!