Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp1824021yba; Sun, 5 May 2019 15:09:07 -0700 (PDT) X-Google-Smtp-Source: APXvYqx2bv7HGYQbipIiwAVDuAZJF2c7GI2tF5tpgdWLcMq1SujLJoNj/OMeA0ICBaDZ0hx7n2Sm X-Received: by 2002:a62:5a42:: with SMTP id o63mr30172629pfb.170.1557094147780; Sun, 05 May 2019 15:09:07 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1557094147; cv=none; d=google.com; s=arc-20160816; b=wKU3eTIQhZ45l/B2ANPmxvxtsJ9oHpyJyUxKDnK9hCAarNPbrDP8Iwx0ub5ClwTRql gyqB5Kg5SlhD1NkoPHlXUi1l0a747xT9jJRTgX3Uy1hO39TB5ZnKgShcRqPeggELBcBc ph/RAI2H8tO5w+FyUKzqIulZzKDVUWTh91HDqZM/1UrtDfUts0KLL2JqX4QVQwfT+3Ue BEjdsJmFxjpYcUZcpLDvz1Rlv2sWLFbNTlNQGhz3MPZV6TV/Jhtn85bm40+9WQUjleWT eQ1cUwYoSnrLjzjypqsVG1fbecDYsnSi286AYq4ZsDFqi2BHGokArKSlSX6+cemUAKvj yfrg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=hiM/nPmHtBJ5C6WneLnH2V2k7oqsGYd27qlhtCVl1aY=; b=FXqzLFzy/At1XKoJ7lKqYyImNdxUQyW7Mqlbjd8xact4XmkbOVJa0QIQA3EdZTQ2/1 svjTHpiqDYD4g4neH5UHAQvIe19su8TIY39BwlAH1Zb2aTcZaynf/1gE+qNcTCt/ciEY udmGc5jMfoyOxYtNR5ezKWLCPlJ1dIkOM7fuggMogm4zXmf8P/fw7AWmPuHftmEEb12P xBTKfKtGLKrpaPIC95fb8WRU/d3A4vfksLaT3P5S95bL3FvXgIvfaCBPxldOV/1KVlCb geybUpQIH8OiW39IItqgzuuc1edVZZkfWOmwkBkXdDKHow9iAffMRFcs89UcO8k4IfYO AhLw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=canonical.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w6si12801362pge.362.2019.05.05.15.08.52; Sun, 05 May 2019 15:09:07 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=canonical.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727964AbfEEWB0 (ORCPT + 99 others); Sun, 5 May 2019 18:01:26 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:56926 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726905AbfEEWBZ (ORCPT ); Sun, 5 May 2019 18:01:25 -0400 Received: from 1.general.cking.uk.vpn ([10.172.193.212] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1hNPCE-00019B-T5; Sun, 05 May 2019 22:01:23 +0000 From: Colin King To: Alexander Viro , Jens Axboe , linux-fsdevel@vger.kernel.org, linux-block@vger.kernel.org Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] io_uring: fix shadowed variable ret return code being not checked Date: Sun, 5 May 2019 23:01:22 +0100 Message-Id: <20190505220122.5024-1-colin.king@canonical.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Colin Ian King Currently variable ret is declared in a while-loop code block that shadows another variable ret. When an error occurs in the while-loop the error return in ret is not being set in the outer code block and so the error check on ret is always going to be checking on the wrong ret variable resulting in check that is always going to be true and a premature return occurs. Fix this by removing the declaration of the inner while-loop variable ret so that shadowing does not occur. Addresses-Coverity: ("'Constant' variable guards dead code") Fixes: 6b06314c47e1 ("io_uring: add file set registration") Signed-off-by: Colin Ian King --- fs/io_uring.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 452e35357865..50f965060ef1 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -2363,7 +2363,6 @@ static int io_sqe_files_scm(struct io_ring_ctx *ctx) left = ctx->nr_user_files; while (left) { unsigned this_files = min_t(unsigned, left, SCM_MAX_FD); - int ret; ret = __io_sqe_files_scm(ctx, this_files, total); if (ret) -- 2.20.1