]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ext4: fix abs() usage in ext4_mb_check_group_pa
authorJohn Stultz <john.stultz@linaro.org>
Mon, 19 Oct 2015 04:01:05 +0000 (00:01 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 19 Oct 2015 04:01:05 +0000 (00:01 -0400)
commit1a70ea8d47aa484e03b2540f7523f429f5af2334
treedc6c1c4594d7e4843526a8ebba1c8b27a5e749e7
parenta45d9413847b52458b396c4c45e099b4d5226e5f
ext4: fix abs() usage in ext4_mb_check_group_pa

The ext4_fsblk_t type is a long long, which should not be used
with abs(), as is done in ext4_mb_check_group_pa().

This patch modifies ext4_mb_check_group_pa() to use abs64()
instead.

Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/mballoc.c