mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-05 17:01:17 +00:00
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>
This commit is contained in:
parent
1eca93f9ca
commit
144704e522
@ -1315,8 +1315,8 @@ retry_alloc:
|
|||||||
smp_rmb();
|
smp_rmb();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Now search the rest of the groups. We assume that
|
* 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++) {
|
for (bgi = 0; bgi < ngroups; bgi++) {
|
||||||
group_no++;
|
group_no++;
|
||||||
|
@ -1572,7 +1572,7 @@ retry_alloc:
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Now search the rest of the groups. We assume that
|
* 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++) {
|
for (bgi = 0; bgi < ngroups; bgi++) {
|
||||||
group_no++;
|
group_no++;
|
||||||
|
@ -1700,7 +1700,7 @@ retry_alloc:
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Now search the rest of the groups. We assume that
|
* 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++) {
|
for (bgi = 0; bgi < ngroups; bgi++) {
|
||||||
group_no++;
|
group_no++;
|
||||||
|
Loading…
Reference in New Issue
Block a user