OSDN Git Service

ext4: fix overflow when counting used blocks on 32-bit architectures
authorJan Kara <jack@suse.cz>
Fri, 31 May 2013 23:39:56 +0000 (19:39 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 22 Jul 2013 01:21:32 +0000 (18:21 -0700)
commitbb39c83ce5453f7b702865d7fe5cc283689d8810
tree97127b430dda9c8be17486654325fd5c528a2157
parentb9ea84239c8098c367680278d1daa4d69ae88719
ext4: fix overflow when counting used blocks on 32-bit architectures

commit 8af8eecc1331dbf5e8c662022272cf667e213da5 upstream.

The arithmetics adding delalloc blocks to the number of used blocks in
ext4_getattr() can easily overflow on 32-bit archs as we first multiply
number of blocks by blocksize and then divide back by 512. Make the
arithmetics more clever and also use proper type (unsigned long long
instead of unsigned long).

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/inode.c