从Linux内核模块写入debugfs

时间:2017-02-14 20:41:06

标签: c linux linux-kernel kernel-module chardev

我设法在匹配的路径中成功创建了dentry,但现在我该怎么写呢?

struct dentry* log_dir = debugfs_create_dir ("my_module", NULL);
struct dentry* log_file = debugfs_create_dir ("log", 0777, log_dir, NULL, NULL);

1 个答案:

答案 0 :(得分:1)

我想说你需要做的最好的参考是内核源代码树中的debugfs.txt文档文件。

我还假设你在这里的代码示例中犯了一个错误:

struct dentry* log_file = debugfs_create_dir ("log", 0777, log_dir, NULL, NULL);

因为看起来你正在尝试创建一个文件,而不是另一个目录。 所以我想你想做的更像是这样:

struct dentry* log_file = debugfs_create_file("log", 0777, log_dir, NULL, &log_fops);

其中log_fops可能是这样的:

static const struct file_operations log_fops = {
    .owner  =   THIS_MODULE,
    .read   =   log_read,
    .write  =   log_write, /* maybe you don't need this */
};

当然,您还需要实现log_read和log_write函数:

ssize_t log_read(struct file *file, char __user *buff, size_t count, loff_t *offset);

ssize_t log_write(struct file *file, const char __user *buff, size_t count, loff_t *offset);