ext4: fix long mount times on very big file systems
authorTheodore Ts'o <tytso@mit.edu>
Thu, 16 Aug 2012 15:59:04 +0000 (11:59 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 26 Aug 2012 22:00:42 +0000 (15:00 -0700)
commite1b5abaa966c9baaaf90c975c4ca377dd7ab4483
tree3027d3b4e1aa795b352692422f10cb80ec80fd3f
parent9a321bec4fb122cb2bd60febfd9dc71eed7ee5b2
ext4: fix long mount times on very big file systems

commit 0548bbb85337e532ca2ed697c3e9b227ff2ed4b4 upstream.

Commit 8aeb00ff85a: "ext4: fix overhead calculation used by
ext4_statfs()" introduced a O(n**2) calculation which makes very large
file systems take forever to mount.  Fix this with an optimization for
non-bigalloc file systems.  (For bigalloc file systems the overhead
needs to be set in the the superblock.)

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/super.c