Re: Linux Ext2 Inode question

Andreas Dilger (adilger@turbolabs.com)
Wed, 6 Feb 2002 00:01:13 -0700


On Feb 05, 2002 20:02 -0800, Jim Lu wrote:
> I have a question regarding the inode number on the EXT2 filesystem. If I
> get a Inode number, is there a way I can calculate the block address (with
> respect to the filesystem) on this inode base on the inode number?

Yes. This is done in several places in the ext2 kernel sources, like
ext2_read_inode(). Note that it is not a simple calculation, because
the position of the inode table can (although generally does not) vary
on a per-group basis. On a cold cache, you would need to do 2 reads
to calculate the inode block location (superblock + group descriptor).

> Also, I remember reading somewhere that not all the EXT2 block groups have
> superblock information. So would the beginning of those block group look
> like this " group descriptor | block bitmap | inode bitmap | inode table |
> data " ? And, could someone please tell me which block groups have
> superblock info.

On a "sparse superblock" filesystem, superblock and group descriptor
backups are kept in groups 0 and those numbered 3^n, 5^n, 7^n, where
n is an integer. So, 0, 1, 3, 5, 7, 9, 15, 25, 27.

Groups that do not have backups generally will contain the block bitmap,
inode bitmap, inode table, and data. However, the actual position will
be given in the group descriptor table.

Cheers, Andreas

--
Andreas Dilger
http://sourceforge.net/projects/ext2resize/
http://www-mddsp.enel.ucalgary.ca/People/adilger/

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/