作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在 source/arch/x86/kernel/msr.c 中,字符设备的 msr_open 回调使用以下构造来提取所用字符设备文件的次要编号:
static int msr_open(struct inode *inode, struct file *file)
{
unsigned int cpu = iminor(file_inode(file));
[...]
}
我的问题是:为什么不直接用函数的第一个参数调用iminor,比如:
unsigned int cpu = iminor(inode);
该构造也用于其他回调(例如读取和写入),其中 inode 未作为参数传递,所以我猜这是由于复制/粘贴,或者它有更深的含义?
最佳答案
An inode is a data structure on a traditional Unix-style file system such as UFS or ext3. An inode stores basic information about a regular file, directory, or other file system object. - http://www.cyberciti.biz/tips/understanding-unixlinux-filesystem-inodes.html
同样的交易。
关于Linux:inode 和 file_inode(file) 的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18701789/
在 source/arch/x86/kernel/msr.c 中,字符设备的 msr_open 回调使用以下构造来提取所用字符设备文件的次要编号: static int msr_open(struct
我是一名优秀的程序员,十分优秀!