我是驱动程序编程的新手,我开始编写简单的字符驱动程序。然后我为我的字符驱动程序mknod /dev/simple-driver c 250 0创建了特殊文件。当它键入cat /dev/simple-driver时。它显示字符串“来自内核模式的Hello world!”。我知道那个功能
static const char g_s_Hello_World_string[] = "Hello world tamil_vanan!\n\0";
static const ssize_t g_s_Hello_World_size = sizeof(g_s_Hello_World_string);
static ssize_t device_file_read(
struct file *file_ptr
, char __user *user_buffer
, size_t count
, loff_t *possition)
{
printk( KERN_NOTICE "Simple-driver: Device file is read at offset =
%i, read bytes count = %u", (int)*possition , (unsigned int)count );
if( *possition >= g_s_Hello_World_size )
return 0;
if( *possition + count > g_s_Hello_World_size )
count = g_s_Hello_World_size - *possition;
if( copy_to_user(user_buffer, g_s_Hello_World_string + *possition, count) != 0 )
return -EFAULT;
*possition += count;
return count;
}
被调用。这被映射到我的驱动程序的 file_opreation 结构中的 (*read)。我的问题是如何调用这个函数,如何传递 struct file、char、count、offset 等参数 bcoz 是我只是键入了 cat 命令。请详细说明这是怎么发生的