Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcf6a79d authored by Artem Bityutskiy's avatar Artem Bityutskiy Committed by Linus Torvalds
Browse files

write-back: fix nr_to_write counter



Commit 05fe478d introduced some
@wbc->nr_to_write breakage.

It made the following changes:
 1. Decrement wbc->nr_to_write instead of nr_to_write
 2. Decrement wbc->nr_to_write _only_ if wbc->sync_mode == WB_SYNC_NONE
 3. If synced nr_to_write pages, stop only if if wbc->sync_mode ==
    WB_SYNC_NONE, otherwise keep going.

However, according to the commit message, the intention was to only make
change 3.  Change 1 is a bug.  Change 2 does not seem to be necessary,
and it breaks UBIFS expectations, so if needed, it should be done
separately later.  And change 2 does not seem to be documented in the
commit message.

This patch does the following:
 1. Undo changes 1 and 2
 2. Add a comment explaining change 3 (it very useful to have comments
    in _code_, not only in the commit).

Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Acked-by: default avatarNick Piggin <npiggin@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 51935355
Loading
Loading
Loading
Loading
+15 −6
Original line number Original line Diff line number Diff line
@@ -1051,13 +1051,22 @@ int write_cache_pages(struct address_space *mapping,
				}
				}
 			}
 			}


			if (wbc->sync_mode == WB_SYNC_NONE) {
			if (nr_to_write > 0)
				wbc->nr_to_write--;
				nr_to_write--;
				if (wbc->nr_to_write <= 0) {
			else if (wbc->sync_mode == WB_SYNC_NONE) {
				/*
				 * We stop writing back only if we are not
				 * doing integrity sync. In case of integrity
				 * sync we have to keep going because someone
				 * may be concurrently dirtying pages, and we
				 * might have synced a lot of newly appeared
				 * dirty pages, but have not synced all of the
				 * 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;
				done = 1;
				done = 1;