struct proc_dri_entry *file; /*3.10以后内核的proc文件的新接口 需要关联file_operations*/ /*1,首先要调用创建proc文件的函数,需要绑定flie_operations*/ file = proc_create("abc_proc", 0644, NULL, &my_fops); if(!file) return -ENOMEM; return 0; } /*6,删除proc文件*/ staticvoid __exit my...
dstat 使用的是 /proc/<pid>/io 下的值吗?这下边的值,是否包括该进程从网络接口中读写的字节数? 有一个WEB进程,我想知道它实际读写有磁盘的字节数。 关注者2 被浏览617 关注问题写回答 邀请回答 好问题 1 1 条评论 分享 暂时还没有回答,开始写第一个回答 下载知乎客户端 与...
static int my_proc_open(struct inode *inode, struct file *file) { /*4,在open函数中调用single_open绑定seq_show函数指针 需要说明的是,ldd3中介绍的seq接口用该调用seq_open函数 其调用形式如下: return sep_open(file, &scull_seq_ops); scull_seq_ops为struct seq_operations结构体 在该结构体中绑定...