]> git.neil.brown.name Git - history.git/commit
[PATCH] ext2/ext3 -ENOSPC bug
authorAndrew Morton <akpm@osdl.org>
Sat, 6 Mar 2004 16:50:11 +0000 (08:50 -0800)
committerJaroslav Kysela <perex@suse.cz>
Sat, 6 Mar 2004 16:50:11 +0000 (08:50 -0800)
commit5e9087ad3928c9d80cc62b583c3034f864b6d315
tree0325552156ed5a83b6d7c2a3ef3b258df980ffef
parentf8abc670b18eed2b1f8203f82d59f62379395ba1
[PATCH] ext2/ext3 -ENOSPC bug

From: Chris Mason <mason@suse.com>

find_group_other looks buggy for ext2 and ext3 in 2.6, it can cause -ENOSPC
errors when the fs has plenty of free room.

To hit the bug, you need a filesystem where:

parent_group has no free blocks (but might have free inodes) Every other
group with free inodes has no free blocks.

That gets you down to the final linear search in find_group_other.  The
linear search has two bugs:

group = parent_group + 1; means we start searching at parent_group + 2
because the loop increments group before using it.

for(i = 2 ; i < ngroups ; i++) means we don't search through all the
groups.

The end result is that parent_group and parent_group + 1 are not checked
for free inodes in the final linear search.  ext3 has the same problem.
fs/ext2/ialloc.c
fs/ext3/ialloc.c