我正在尝试创建一个条目,/proc
以便我可以控制我的内核模块。我想我得到了这个write
部分,但我不知道这个read
部分应该如何工作。
static char proc_data[1];
static ssize_t read_proc(struct file *file, char __user *buf, size_t count, loff_t *pos){
int ret;
if(pos > 0){
ret = 0;
}else{
memcpy(buf, proc_data, 1);
ret = 1;
}
return ret;
}
static ssize_t write_proc(struct file *file, const char __user *buf, size_t count, loff_t *pos){
if(count > 2)
return -EINVAL;
if(copy_from_user(proc_data, buf, 1))
return -EFAULT;
if(strcmp("1", proc_data) == 0){
//Do something
}else if(strcmp("0", proc_data) == 0){
//Undo something
}
return count;
}
如果我从 1 返回 1 read_proc
,如果我在 中输入我的条目/proc
,它不会停止输出相同的值。如果我返回 0,它不会输出任何东西。所以我猜我应该第一次返回 1,然后返回 0,但我不知道如何。