Final Year Project:
Using Linux Filesystems Under Windows
Chris Bryden
BEng. Electronics and Software Engineering
School of Computer Science
University of Birmingham
79
·
=i_version - The version of the file, used by NFS.
·
=i_file_acl - The Access control list of the file (not used).
·
=i_dir_acl - The Access control list for the directory (not used).
·
=i_faddr - The block where the fragment of the file resides.
·
=i_frag - The number of fragments in the block.
·
=i_size - The size of the fragment.
·
=i_pad1 - padding
·
=i_reserved2 - Not used.
An example of the implementation of this function is given below:
void DisplayInode(unsigned long InodeNum)
{
INODE Inode;
Inode = ext2_get_inode(INodeNum);
/*DISPLAY INODE INFORMATION TO USER */
return;
}