Received: by 10.192.165.148 with SMTP id m20csp14604imm; Fri, 20 Apr 2018 02:06:04 -0700 (PDT) X-Google-Smtp-Source: AIpwx4/UJ6Q7+XzNR835jqH1mdE7G3fpZ4Gnu9uKzf4OKohGI3FvG1pPUsxLqXTzyMyiRJ9KcYK0 X-Received: by 10.99.178.12 with SMTP id x12mr8039504pge.316.1524215164425; Fri, 20 Apr 2018 02:06:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1524215164; cv=none; d=google.com; s=arc-20160816; b=y+rKGUTf6Yv69vGeEUphaE3iXpkJOcXRM98O850R48tKYRNWjGckQ5SWSaH5okEeLK +0LN3hz05ASuRwxOqZhXENFPW/+9c4xx4eYReyi2EQbeSRLbuTfsVZsF0PQ3YeaWiihB r4RJKhhMRriI/S4F6cj7qnIoghGJm0jhSGFxMRpt6jEOnZwKpXjE5GWvghO/A+GeI7WB WlC7AQ+LPwO/ZY0pbL+F0uoSR/4rorbBuIk5CepqylgNCfHOdfMUmsvZe+vLW5WW4Mob WTHw3iqlWdaOL1g0yisubiWZE1snBJlQ1DHIege2VIxllip6ByS6zYXJzE1uA6DQ8N// 8UJw== 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:arc-authentication-results; bh=ioGzWerQjGYXKz9dS2aPUrbmD2rLqtOHKDYpem7eoGA=; b=hgArje26dOIGNLF1ymncMeWJkM3vW7l9+cAyEl6bzrRUxnUySkADV4QH+yy74nhSrx JGuabC9euH6HeUk7luzjJGOPka7hIcEpUjiYw/Vd7XSPIRD6G1zcxKTOLZsqllH4J9g1 WmTxWlgp2la64gLG/gTi7fai+QC+AAb5lj/SHMcCl9u3ELvOkcg/jkC/8r+gtt12ADyK QjhlgA7Wq9DN9LVKG35ug4Z4ih/N4cUhecsSoCMWc/fDFZzFP8qnmPLbvzjPMzXXnpyk 43+LocX51hqUmY8YjktuHZte2A8lguOhytVyur5NFIjYISZ9uhl7Gg3lQ7oi5MTVKUa/ qtIQ== 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 r1-v6si5331973plb.430.2018.04.20.02.05.50; Fri, 20 Apr 2018 02:06:04 -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 S1754380AbeDTJDR (ORCPT + 99 others); Fri, 20 Apr 2018 05:03:17 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:40651 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754159AbeDTJDP (ORCPT ); Fri, 20 Apr 2018 05:03:15 -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 1f9Rwl-00044K-6z; Fri, 20 Apr 2018 09:03:11 +0000 From: Colin King To: Intel SCU Linux support , Artur Paszkiewicz , "James E . J . Bottomley" , "Martin K . Petersen" , linux-scsi@vger.kernel.org Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] isci: Fix infinite loop in while loop Date: Fri, 20 Apr 2018 10:03:10 +0100 Message-Id: <20180420090310.714-1-colin.king@canonical.com> X-Mailer: git-send-email 2.17.0 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 In the case when the phy_mask is bitwise anded with the phy_index bit is zero the continue statement currently jumps to the next iteration of the while loop and phy_index is never actually incremented, potentially causing an infinite loop if phy_index is less than SCI_MAX_PHS. Fix this by jumping to the increment of phy_index. [ The goto is used to save one more level of nesting that makes the code far wider than 80 columns. ] Fixes: 80aebef7c112 ("[SCSI] isci: Fix a infinite loop.") Signed-off-by: Colin Ian King --- drivers/scsi/isci/port_config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/scsi/isci/port_config.c b/drivers/scsi/isci/port_config.c index edb7be786c65..55dc7c1dbc2b 100644 --- a/drivers/scsi/isci/port_config.c +++ b/drivers/scsi/isci/port_config.c @@ -293,7 +293,7 @@ sci_mpc_agent_validate_phy_configuration(struct isci_host *ihost, * This is expected and required to add the phy to the port. */ while (phy_index < SCI_MAX_PHYS) { if ((phy_mask & (1 << phy_index)) == 0) - continue; + goto next_index; sci_phy_get_sas_address(&ihost->phys[phy_index], &phy_assigned_address); @@ -311,6 +311,7 @@ sci_mpc_agent_validate_phy_configuration(struct isci_host *ihost, &ihost->phys[phy_index]); assigned_phy_mask |= (1 << phy_index); +next_index: phy_index++; } -- 2.17.0