我目前正在研究字符设备模块(驱动程序),我很困惑为什么有一个use count和一个* owner(在文件操作结构中)。
从以下链接可以看出,文件操作结构是:
struct file_operations {
struct module *owner;
loff_t (*llseek) (struct file *, loff_t, int);
ssize_t (*read) (struct file *, char *, size_t, loff_t *);
ssize_t (*write) (struct file *, const char *, size_t, loff_t *);
int (*readdir) (struct file *, void *, filldir_t);
unsigned int (*poll) (struct file *, struct poll_table_struct *);
int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
int (*mmap) (struct file *, struct vm_area_struct *);
int (*open) (struct inode *, struct file *);
int (*flush) (struct file *);
int (*release) (struct inode *, struct file *);
int (*fsync) (struct file *, struct dentry *, int datasync);
int (*fasync) (int, struct file *, int);
int (*lock) (struct file *, int, struct file_lock *);
ssize_t (*readv) (struct file *, const struct iovec *, unsigned long,
loff_t *);
ssize_t (*writev) (struct file *, const struct iovec *, unsigned long,
loff_t *);
};
http://www.tldp.org/LDP/lkmpg/2.4/html/c577.htm
正如我们在课堂上讲授的那样,*所有者用于确保在设备仍在使用时不卸载模块。 但是,在上面链接的文章中,他们描述了这是通过使用MOD_INC_USE_COUNT等宏来完成的。
因此,我的问题是:为什么我们需要两者?宏是否使用指针才能访问此计数器?
答案 0 :(得分:1)
增量模块的使用计数器需要使用模块的结构。
宏MOD_INC_USE_COUNT
间接使用THIS_MODULE
指针,该指针对应于当前编译的模块。换句话说,对于使用此宏的增量模块的使用计数器,您需要从模块的代码中调用它。
另一方面,文件操作是从模块外部的 (在虚拟文件系统层,VFS中)发出的。因此,应该在模块之外执行模块卸载的防止,否则竞争条件是不可避免的[考虑从模块外部调用.open
函数并同时卸载模块]。这就是为什么需要.owner
字段。
现代内核没有宏MOD_INC_USE_COUNT
。相反,它定义了函数
void __module_get(struct module* mod);
直接接受模块参数。