From: Jan Kara Date: Fri, 31 May 2013 23:39:56 +0000 (-0400) Subject: ext4: fix overflow when counting used blocks on 32-bit architectures X-Git-Tag: v3.2.49~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=967c9a98626b1e402ab042bd770b7109532f49fb;p=pandora-kernel.git 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 Signed-off-by: Theodore Ts'o Signed-off-by: Ben Hutchings --- Reading git-diff-tree failed