]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ext4: fix async i/o writes beyond 4GB to a sparse file
authorEric Sandeen <sandeen@redhat.com>
Fri, 5 Feb 2010 04:58:38 +0000 (23:58 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 26 Apr 2010 14:41:36 +0000 (07:41 -0700)
commit9e9be58b68969b25cb9df6805563e9453de927f8
tree141c65201c70914b3be5c5b82505c22ec88829ea
parent5d40c8cbd548e3259589d364dd5bf64ab504f147
ext4: fix async i/o writes beyond 4GB to a sparse file

commit a1de02dccf906faba2ee2d99cac56799bda3b96a upstream.

The "offset" member in ext4_io_end holds bytes, not blocks, so
ext4_lblk_t is wrong - and too small (u32).

This caused the async i/o writes to sparse files beyond 4GB to fail
when they wrapped around to 0.

Also fix up the type of arguments to ext4_convert_unwritten_extents(),
it gets ssize_t from ext4_end_aio_dio_nolock() and
ext4_ext_direct_IO().

Reported-by: Giel de Nijs <giel@vectorwise.com>
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Cc: maximilian attems <max@stro.at>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/ext4/ext4.h
fs/ext4/extents.c
fs/ext4/inode.c