[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20210618070158.40531-1-colin.king@canonical.com>
Date: Fri, 18 Jun 2021 08:01:58 +0100
From: Colin King <colin.king@...onical.com>
To: David Howells <dhowells@...hat.com>, linux-cachefs@...hat.com
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] fs/cachefiles: remove redundant continue statement
From: Colin Ian King <colin.king@...onical.com>
The continue statement at the end of a loop has no effect,
remove it.
Addresses-Coverity: ("Continue has no effect")
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
fs/cachefiles/rdwr.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/fs/cachefiles/rdwr.c b/fs/cachefiles/rdwr.c
index 8ffc40e84a59..2b6e2ea1d2e4 100644
--- a/fs/cachefiles/rdwr.c
+++ b/fs/cachefiles/rdwr.c
@@ -629,7 +629,6 @@ static int cachefiles_read_backing_file(struct cachefiles_object *object,
put_page(netpage);
netpage = NULL;
fscache_retrieval_complete(op, 1);
- continue;
}
netpage = NULL;
--
2.31.1
Powered by blists - more mailing lists