diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2008-02-06 12:40:15 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 21:41:21 +0300 |
commit | 144704e5227362cbd694b0b3c3aa4ac99a0115c9 (patch) | |
tree | d87b081741724d742514e9b91714ee0aa510ed1e /fs/ext3/balloc.c | |
parent | 1eca93f9cafdec4a332ace9b0fc0d3886d430c28 (diff) | |
download | linux-144704e5227362cbd694b0b3c3aa4ac99a0115c9.tar.xz |
ext[234]: fix comment for nonexistent variable
The comment in ext[234]_new_blocks() describes about "i". But there is no
local variable called "i" in that scope. I guess it has been renamed to
group_no.
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ext3/balloc.c')
-rw-r--r-- | fs/ext3/balloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/balloc.c b/fs/ext3/balloc.c index d2dface9a423..245949ead658 100644 --- a/fs/ext3/balloc.c +++ b/fs/ext3/balloc.c @@ -1572,7 +1572,7 @@ retry_alloc: /* * Now search the rest of the groups. We assume that - * i and gdp correctly point to the last group visited. + * group_no and gdp correctly point to the last group visited. */ for (bgi = 0; bgi < ngroups; bgi++) { group_no++; |