From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BE5364369A; Sat, 12 Sep 2026 19:02:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789239772; cv=none; b=MbgWvDGxKM+KjX27zVEnv3MUqZLUapCxlC2qN4ZYGQ0gqbh5KPP/wzBiFa3lHcgbL35oTXfKzPSK93ESF1REYGGIGkawT+oW+fedWWvFVWzAIU7Sh6zQ49GCnDLC4e8QSP016PUCvRHVoc0W3wijcASmFmtbP88cAKWsvcmrz7U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789239772; c=relaxed/simple; bh=3Jg/MeS2y1ZraQ+wm/64FJur2rmDndmkMRQdaCfMZIE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OLEYfyv8O9RAAi9ecw+hcpPk4olLoIfbhUW0iCGWB2/TaoLkczT1Ox8w1U41/mRBqRzJDafb3WsDQwyPmKF4y1ZM26Mw/d90vD5SJzLkVtG2YELzpMlGYmTdZsHTSSQ6wGbk4fMyaRXDbswcnmMlJJhCSppP2iBpKYJeU13SHfg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YzGjEnmq; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="YzGjEnmq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1797C1F000FF; Sat, 12 Sep 2026 19:02:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789239771; bh=BH/S8mAB/HiL44SrIAGsVvwHR7OnRqnht2ZX0ptp7S8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=YzGjEnmqEDasV3XLNNzbHWy3Ntt5BOVL7vLGMW5JG5kuowwGwyp4uHP/STYewypqt 1tMsWrRthDOWB5WdT/3vHEXGGhjLQT35NrlQRXsEivyK7Z8CLulmYuhYS3OJyQ2STI nS5tfUW1mHdnO+DbVDy5V+4f6mwQgp18nSUAmoKs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Manish Rangankar , Nilesh Javali , Hannes Reinecke , "Martin K. Petersen (Oracle)" , Sasha Levin Subject: [PATCH 5.15 733/935] scsi: qla2xxx: Remove redundant VPD flash read in sysfs read path Date: Sat, 12 Sep 2026 09:02:43 +0200 Message-ID: <20260912065543.644021366@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065526.833703348@linuxfoundation.org> References: <20260912065526.833703348@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Manish Rangankar [ Upstream commit 5cbc49d5c4cd20c18041e86958103045216d2190 ] qla2x00_sysfs_read_vpd() called ha->isp_ops->read_optrom() a second time after releasing optrom_mutex. The repeated read is redundant and, unlike the first, runs without optrom_mutex held, exposing flash access to concurrent optrom operations. Drop the duplicate call. Fixes: 5fa8774c7f38 ("scsi: qla2xxx: Add 28xx flash primary/secondary status/image mechanism") Signed-off-by: Manish Rangankar Signed-off-by: Nilesh Javali Reviewed-by: Hannes Reinecke Link: https://patch.msgid.link/20260723050413.3897522-7-njavali@marvell.com Signed-off-by: Martin K. Petersen (Oracle) Signed-off-by: Sasha Levin --- drivers/scsi/qla2xxx/qla_attr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index 26af5bdadfa01..e6cf23d457937 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c @@ -580,7 +580,6 @@ qla2x00_sysfs_read_vpd(struct file *filp, struct kobject *kobj, ha->isp_ops->read_optrom(vha, ha->vpd, faddr, ha->vpd_size); mutex_unlock(&ha->optrom_mutex); - ha->isp_ops->read_optrom(vha, ha->vpd, faddr, ha->vpd_size); skip: return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size); } -- 2.53.0