Re: [PATCH 1/2] ext4: Add support for 48 bit inode i_blocks.

2007-10-11 Thread Aneesh Kumar K.V
Andreas Dilger wrote: On Oct 12, 2007 10:06 +0530, Aneesh Kumar K.V wrote: use the __le16 l_i_reserved1 field of the linux2 struct of ext4_inode to represet the higher 16 bits for i_blocks. With this change max_file size becomes (2**48 -1 )* 512 bytes. +static int ext4_inode_blocks_set(hand

Re: [PATCH 1/2] ext4: Add support for 48 bit inode i_blocks.

2007-10-11 Thread Andreas Dilger
On Oct 12, 2007 10:06 +0530, Aneesh Kumar K.V wrote: > use the __le16 l_i_reserved1 field of the linux2 > struct of ext4_inode to represet the higher 16 > bits for i_blocks. With this change max_file size becomes > (2**48 -1 )* 512 bytes. > > +static int ext4_inode_blocks_set(handle_t *handle, >

[PATCH 1/2] ext4: Add support for 48 bit inode i_blocks.

2007-10-11 Thread Aneesh Kumar K.V
use the __le16 l_i_reserved1 field of the linux2 struct of ext4_inode to represet the higher 16 bits for i_blocks. With this change max_file size becomes (2**48 -1 )* 512 bytes. Signed-off-by: Aneesh Kumar K.V <[EMAIL PROTECTED]> --- fs/ext4/inode.c | 69 +++