Commit 89e12190 authored by Federico Cuello's avatar Federico Cuello Committed by Linus Torvalds

writeback: fix break condition

Commit dcf6a79d ("write-back: fix
nr_to_write counter") fixed nr_to_write counter, but didn't set the break
condition properly.

If nr_to_write == 0 after being decremented it will loop one more time
before setting done = 1 and breaking the loop.

[akpm@linux-foundation.org: coding-style fixes]
Cc: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Acked-by: default avatarNick Piggin <npiggin@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6c597963
...@@ -1051,21 +1051,24 @@ int write_cache_pages(struct address_space *mapping, ...@@ -1051,21 +1051,24 @@ int write_cache_pages(struct address_space *mapping,
} }
} }
if (nr_to_write > 0) if (nr_to_write > 0) {
nr_to_write--; nr_to_write--;
else if (wbc->sync_mode == WB_SYNC_NONE) { if (nr_to_write == 0 &&
wbc->sync_mode == WB_SYNC_NONE) {
/* /*
* We stop writing back only if we are not * We stop writing back only if we are
* doing integrity sync. In case of integrity * not doing integrity sync. In case of
* sync we have to keep going because someone * integrity sync we have to keep going
* may be concurrently dirtying pages, and we * because someone may be concurrently
* might have synced a lot of newly appeared * dirtying pages, and we might have
* dirty pages, but have not synced all of the * synced a lot of newly appeared dirty
* pages, but have not synced all of the
* old dirty pages. * old dirty pages.
*/ */
done = 1; done = 1;
break; break;
} }
}
if (wbc->nonblocking && bdi_write_congested(bdi)) { if (wbc->nonblocking && bdi_write_congested(bdi)) {
wbc->encountered_congestion = 1; wbc->encountered_congestion = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment