-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdebugfs.c
57 lines (49 loc) · 1.34 KB
/
debugfs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/debugfs.h>
#include <linux/uaccess.h>
u8 myvalue;
int file_value;
struct dentry *tmp, *dir, *file;
char mybuf[200];
static ssize_t my_read_file(struct file *file, char __user *userbuf,
size_t count, loff_t *ppos)
{
return simple_read_from_buffer(userbuf, count, ppos, mybuf, 200);
}
static ssize_t my_write_file(struct file *file, const char __user *buf,
size_t count, loff_t *ppos)
{
if(count > 200)
return -EINVAL;
copy_from_user(mybuf, buf, count);
return count;
}
static const struct file_operations my_fops = {
.read = my_read_file,
.write = my_write_file,
};
static int __init debugexample_module_init(void)
{
/* the simplest interface */
tmp = debugfs_create_u8("myfile", 0644, NULL, &myvalue);
if (!tmp) {
printk("error creating file");
return -ENODEV;
}
/* custom read and write functions */
dir = debugfs_create_dir("mydirectory", NULL);
file = debugfs_create_file("myfile", 0644, dir, &file_value, &my_fops);
return 0;
}
static void __exit debugexample_module_exit(void)
{
debugfs_remove(tmp);
debugfs_remove(file);
debugfs_remove(dir);
}
module_init(debugexample_module_init);
module_exit(debugexample_module_exit);
MODULE_LICENSE("GPL");