aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ubifs/gc.c
diff options
context:
space:
mode:
authorChristophe Jaillet <christophe.jaillet@wanadoo.fr>2016-11-01 07:45:25 +0100
committerRichard Weinberger <richard@nod.at>2016-12-12 23:06:28 +0100
commitd40a7962174f1144869f18d1fc68a385c9ab21ec (patch)
treee1237bbf195ccff57519f25046580de93ebf4938 /fs/ubifs/gc.c
parentubifs: Use dirty_writeback_interval value for wbuf timer (diff)
downloadlinux-dev-d40a7962174f1144869f18d1fc68a385c9ab21ec.tar.xz
linux-dev-d40a7962174f1144869f18d1fc68a385c9ab21ec.zip
ubifs: Remove some dead code
'ubifs_fast_find_freeable()' can not return an error pointer, so this test can be removed. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs/gc.c')
-rw-r--r--fs/ubifs/gc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/ubifs/gc.c b/fs/ubifs/gc.c
index e845c64b6ce1..7b35e3d6cde7 100644
--- a/fs/ubifs/gc.c
+++ b/fs/ubifs/gc.c
@@ -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));