Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp3081813imm; Sun, 1 Jul 2018 11:51:29 -0700 (PDT) X-Google-Smtp-Source: ADUXVKI4Y5VzKwozUKIi+a90rmbVeCkndkIwfg7E3gWlKJlOn0hNuGwUZrUmBjlP/xLK+70vCzTa X-Received: by 2002:a65:6397:: with SMTP id h23-v6mr19358638pgv.380.1530471089488; Sun, 01 Jul 2018 11:51:29 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530471089; cv=none; d=google.com; s=arc-20160816; b=uebFrAH1EWpWqhZSkKR12QxMDOS1EWnAosn7co42+QTXdOf+0L0o+fRYa0L0RUG2Xr Dzb3HHnjCoVpLgahJLSweN0f2UTpD6sHFRgNMWL/pqJI5kzG8++Po6TZjIznOUt7zW/F dS18AZ3E8P1ubv5POn1/tcCyLGYl+ICt5lRkkspjTKJUJ5btSpQaWLfq9/SFHMN8fQ1n s5ETByuf/KDb3807i6l7BnRr+1ZdtY2VsE803PX/7kKF60RrTP5+43GJaOP81bzDiK1N 4cWZIeqxKTJspwDb1bQgmkviGmVWy8tvvmWhutEJHtKxPY+Xhs5+GH9x6sAGK4LUzzXY P8XQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=m072GN8bG3wbIbO+x9HSyWY8jldcFrr2Q8UXuV7gPCs=; b=orqCH0DYN2b4fniWzYc5hMgjuZfNO0AEo/GiUwiH81FEF4bEX5qin8LJH59RLd44T+ SRtDaaCTkJTtyfF45qlU3jEBh2tBv+9ttL9sozFhzt9SuDu0qFc4eBQXVAkX7vzitUC8 zBXCI1Nl0vf99Yme5ZG5a6eZDS6QU/kNSEvNWmlxlPPn13R2iEfJxHreNGmWsAwotTON OfnH29n6tDF6Daxv0nzt8lh2qylYazzI4lR+iuk2ygt5i64kj8tfDR4KNZvs7ElvS04b rlhYNz5X8nHY4M7K1mGuSR7CVVh4P+fftpGBeNUm8DIWs6F5+9HupkM51Z/XOjZ54fla EhDA== 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 Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y20-v6si13996509pfm.186.2018.07.01.11.51.15; Sun, 01 Jul 2018 11:51:29 -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 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752573AbeGAQLS (ORCPT + 99 others); Sun, 1 Jul 2018 12:11:18 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:59620 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752520AbeGAQLH (ORCPT ); Sun, 1 Jul 2018 12:11:07 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 8D6EDAD8; Sun, 1 Jul 2018 16:11:06 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Colin Ian King , "Martin K. Petersen" , Sasha Levin Subject: [PATCH 3.18 11/85] scsi: isci: Fix infinite loop in while loop Date: Sun, 1 Jul 2018 18:01:29 +0200 Message-Id: <20180701153122.808899386@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180701153122.365061142@linuxfoundation.org> References: <20180701153122.365061142@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 3.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Colin Ian King [ Upstream commit 4bc83b3f272fe8f36450f9c003df49cf07ffe5fd ] 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 turning the while loop into a for loop. Signed-off-by: Colin Ian King Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/scsi/isci/port_config.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/drivers/scsi/isci/port_config.c +++ b/drivers/scsi/isci/port_config.c @@ -291,7 +291,7 @@ sci_mpc_agent_validate_phy_configuration * Note: We have not moved the current phy_index so we will actually * compare the startting phy with itself. * This is expected and required to add the phy to the port. */ - while (phy_index < SCI_MAX_PHYS) { + for (; phy_index < SCI_MAX_PHYS; phy_index++) { if ((phy_mask & (1 << phy_index)) == 0) continue; sci_phy_get_sas_address(&ihost->phys[phy_index], @@ -311,7 +311,6 @@ sci_mpc_agent_validate_phy_configuration &ihost->phys[phy_index]); assigned_phy_mask |= (1 << phy_index); - phy_index++; } }