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

Commit 1a067a22 authored by Artem Bityutskiy's avatar Artem Bityutskiy
Browse files

UBIFS: fix false assertion warning in case of I/O failures



When UBIFS switches to R/O mode because it detects I/O failures, then
when we unmount, we still may have allocated budget, and the assertions
which verify that we have not budget will fire. But it is expected to
have the budget in case of I/O failures, so the assertion warnings will
be false. Suppress them for the I/O failure case.

Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 8c230d9a
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -1772,10 +1772,12 @@ static void ubifs_put_super(struct super_block *sb)
	 * of the media. For example, there will be dirty inodes if we failed
	 * to write them back because of I/O errors.
	 */
	if (!c->ro_error) {
		ubifs_assert(atomic_long_read(&c->dirty_pg_cnt) == 0);
		ubifs_assert(c->budg_idx_growth == 0);
		ubifs_assert(c->budg_dd_growth == 0);
		ubifs_assert(c->budg_data_growth == 0);
	}

	/*
	 * The 'c->umount_lock' prevents races between UBIFS memory shrinker