From: Colin Ian King <colin.king@xxxxxxxxxxxxx> 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@xxxxxxxxxxxxx> --- 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