Kindly tell me the difference between In-core inode list and disk inode list with reference to Unix File System.
Also, kindly direct me to the links where i can get more info on this.
Thanks,LinuxPenseur
|
Kindly tell me the difference between In-core inode list and disk inode list with reference to Unix File System. Also, kindly direct me to the links where i can get more info on this. Thanks,LinuxPenseur |
|||
|
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
From http://www.cs.iastate.edu/~cs554/NOTES/RPC/UNIXfilesystem.pdf (3rd page):
|
|||||
|
|
The inode is a data structure that describes a file. The inode is actually a structure on filesystem. To open a file, the kernel copies the inode into memory. As the file changes, the in-core inode is updated usually more often than the on-disk copy. And the in-core inode has a few extra fields that are only needed while the file is opened. This over-simplifies things a little bit, but I think it's enough for now. ----lok!------ |
|||
|
|
|
Basically the question has been answered. I would like to add in some of my views. In - core inode refers to inode which is present in the main memory.The kernel uses it whenever a process wants to manipulate a file in the secondary memory.It is a dynamic entity. On- disk inode is a static entity & is present only in the Secondary memory. HTH |
|||
|
|
|
" Difference between in-core Inode and disk Inode The inode is a data structure that describes everything about a file other than their name. When a file is opened then the kernel copies the inode into memory. As the file changes, the in-core inode is updated usually more often than the on-disk copy. And the in-core inode has a few extra fields that are only needed while the file is opened. |
|||
|
|