Linux: Difference between inode and file_inode(file)?

1.5k Views Asked by At

in source/arch/x86/kernel/msr.c, the msr_open callback for the character device uses the following construct to extract the minor number of the character device file used:

static int msr_open(struct inode *inode, struct file *file)
{
    unsigned int cpu = iminor(file_inode(file));

    [...]
}

My question is: Why not directly call iminor with the first argument of the function, like:

unsigned int cpu = iminor(inode);

The construct is used in other callbacks (e.g. read and write) as well,, where the inode is not passed as an argument, so I guess this is due to copy/paste, or is there a deeper meaning to it?

1

There are 1 best solutions below

1
On

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

Same deal.