Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the diffrence inode bitmap and inode table

I am trying to understand the difference between inode bitmap and inode table (from ext2 file system documentation), but I am not getting it. Can any one explain?

like image 815
abhishek Avatar asked Mar 22 '14 17:03

abhishek


1 Answers

The bitmap just occupies one block and is a sequence of 0s and 1s where 0 means that the corresponding inode in the _inode_table_ is free and 1 specified that it's used.

The inode table is where the actual information about the inode is written and it occupies more than one block on the filesystem.

The bitmap technique is useful to quickly find free locations on the inode table (or data blocks) when modifying the filesystem.

On the hard drive, those sections would look like this:

 inode bitmap:
 11100011010010101...

 inode table:
 struct inode | struct inode | struct inode | struct inode | ...
like image 77
Paulo Bu Avatar answered Oct 11 '22 21:10

Paulo Bu