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

Commit d40a7962 authored by Christophe Jaillet's avatar Christophe Jaillet Committed by Richard Weinberger
Browse files

ubifs: Remove some dead code



'ubifs_fast_find_freeable()' can not return an error pointer, so this test
can be removed.

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent 1b7fc2c0
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -846,10 +846,6 @@ int ubifs_gc_start_commit(struct ubifs_info *c)
	 */
	while (1) {
		lp = ubifs_fast_find_freeable(c);
		if (IS_ERR(lp)) {
			err = PTR_ERR(lp);
			goto out;
		}
		if (!lp)
			break;
		ubifs_assert(!(lp->flags & LPROPS_TAKEN));