我已成功创建了一个带有LKM的伪Hello World条目。
http://pointer-overloading.blogspot.co.at/2013/09/linux-creating-entry-in-proc-file.html
但是在我的init函数中,我有一个整数值,我想在“cat / proc / example”中返回。
任何想法如何在此代码中执行此操作?
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
static int hello_proc_show(struct seq_file *m, void *v) {
seq_printf(m, "Hello proc!\n");
return 0;
}
static int hello_proc_open(struct inode *inode, struct file *file) {
return single_open(file, hello_proc_show, NULL);
}
static const struct file_operations hello_proc_fops = {
.owner = THIS_MODULE,
.open = hello_proc_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static int __init hello_proc_init(void) {
proc_create("hello_proc", 0, NULL, &hello_proc_fops);
return 0;
}
static void __exit hello_proc_exit(void) {
remove_proc_entry("hello_proc", NULL);
}
MODULE_LICENSE("GPL");
module_init(hello_proc_init);
module_exit(hello_proc_exit);
答案 0 :(得分:0)
如果procfs不是严格要求,那么请使用&#39; kobject &#39;创建sysfs
条目。请参阅以下示例,并根据您的要求修改foo_show
功能。否则,来自@mali的评论就可以解决问题了。
https://github.com/saiyamd/linux/blob/master/samples/kobject/kobject-example.c