[PATCH] ext3: add extent map support
authorAlex Tomas <alex@clusterfs.com>
Wed, 11 Oct 2006 08:21:03 +0000 (01:21 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 11 Oct 2006 18:14:16 +0000 (11:14 -0700)
commita86c61812637c7dd0c57e29880cffd477b62f2e7
tree10737307293afde2999a887cfeac32c7d7584aa7
parentc3fcc8137ce4296ad6ab94f88bd60cbe03d21527
[PATCH] ext3: add extent map support

On disk extents format:
/*
* this is extent on-disk structure
* it's used at the bottom of the tree
*/
struct ext3_extent {
__le32  ee_block;       /* first logical block extent covers */
__le16  ee_len;         /* number of blocks covered by extent */
__le16  ee_start_hi;    /* high 16 bits of physical block */
__le32  ee_start;       /* low 32 bigs of physical block */
};

Signed-off-by: Alex Tomas <alex@clusterfs.com>
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
12 files changed:
fs/ext4/Makefile
fs/ext4/dir.c
fs/ext4/extents.c [new file with mode: 0644]
fs/ext4/ialloc.c
fs/ext4/inode.c
fs/ext4/ioctl.c
fs/ext4/super.c
include/linux/ext4_fs.h
include/linux/ext4_fs_extents.h [new file with mode: 0644]
include/linux/ext4_fs_i.h
include/linux/ext4_fs_sb.h
include/linux/ext4_jbd2.h