+1
−1
+1
−2
fs/ext4/extents.c
0 → 100644
+2075
−0
File added.
Preview size limit exceeded, changes collapsed.
+11
−0
+11
−6
Loading
Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more
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>
File added.
Preview size limit exceeded, changes collapsed.