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 6FCFE3AA4EB for ; Sat, 15 Aug 2026 12:31:28 +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=1786797089; cv=none; b=H3S6xOkS0k8RsNIQRvL5GD7CT5nwl3LaaefACYWvc6XMexGQnFHOlmc7rk/lmJn5trClnSHBqE0xXKx741nx8lLjaaB9Ptp3spdQoORE3eEeiWulES0N89TPiUJKKBhQC9q0EiwK8ZHVyiC1fS+Ng+0IaPR4EHOTuisWcZ2HavE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786797089; c=relaxed/simple; bh=cjF40YS+SFtWwN19RppC+Jn6YiN8X3BVTM2SmujDJEw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Asdzlwoc+yVJoN79ybakwkoODJa6Fsr8YJKlqdoPwhZnVsECCYcnFlQtalGTMrPoBmtvx83ItZDWmWlk6oZUm5IuV2tPncdFVcjDIduaRnLqZAuYRECsKYIjJ4ZiOpNL7YJJVf01TsxusERg3E1G3yM73yyo2tC3q172MKSWMhc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ba5fDTRt; 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="ba5fDTRt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7B7A1F000E9; Sat, 15 Aug 2026 12:31:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786797088; bh=Wvy1EWm9C7ycsCZbvrsixsJ5xI3kF6EnKWLCpsTBuC4=; h=From:To:Cc:Subject:Date:Reply-To; b=ba5fDTRtiLimF7bvQj6M4DCQjM/v3ARJ9r4LCXPRaqTcoC5cO0KUNs+FI7qD3mRNQ Cdz7XcImyNyayx2dbo3ty+ODaDsPOrLpT6cU0tcyh/x79Vpp9uyNpR1Kbhi5ga1HKM A8x2cpT1/TJ2K0o5eMgGd2PQS9L3Pt5l/HEbqdF8= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2026-74526: scsi: mpi3mr: Fix potential deadlock in mpi3mr_fault_uevent_emit Date: Sat, 15 Aug 2026 21:26:47 +0900 Message-ID: <2026081545-CVE-2026-74526-09fd@gregkh> X-Mailer: git-send-email 2.55.0 Reply-To: , Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=2165; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=Dokwa8NjPINnGTYrMVqG3j1zQ0TJWDh98Cgc3UhDeJc=; b=owGbwMvMwCRo6H6F97bub03G02pJDFkNUSctTizao8Cnv03psZ3C3lsSG9fktfa5p3UFJvbPy Np1fEVsRywLgyATg6yYIsuXbTxH91ccUvQytD0NM4eVCWQIAxenAEzk8XaGuWLny4tCF6fcWzb9 sz/nj3PLmHdu+cmwYMWB+0U77rZtmRIju1y8g5ep+X7+ZwA= X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit From: Greg Kroah-Hartman Description =========== In the Linux kernel, the following vulnerability has been resolved: scsi: mpi3mr: Fix potential deadlock in mpi3mr_fault_uevent_emit mpi3mr_fault_uevent_emit() runs from the fault watchdog and reset paths where host I/O may already be blocked. GFP_KERNEL allocations here, both the local kzalloc_obj() and the ones inside kobject_uevent_env() itself, can trigger reclaim that waits on that blocked I/O and deadlock. Use memalloc_noio_save()/restore() to cover the whole call instead of just the local allocation. The Linux kernel CVE team has assigned CVE-2026-74526 to this issue. Affected and fixed versions =========================== Issue introduced in 7.0 with commit ec54b348f274fdd2bd32bbe74de6d62ae1a10a18 and fixed in 7.1.8 with commit df817b19dac7034416d18f14347010b3e9f5cf3d Issue introduced in 7.0 with commit ec54b348f274fdd2bd32bbe74de6d62ae1a10a18 and fixed in 7.2-rc6 with commit ccff8c92571500fcfed21281e33daaf645bf692f Please see https://www.kernel.org for a full list of currently supported kernel versions by the kernel community. Unaffected versions might change over time as fixes are backported to older supported kernel versions. The official CVE entry at https://cve.org/CVERecord/?id=CVE-2026-74526 will be updated if fixes are backported, please check that for the most up to date information about this issue. Affected files ============== The file(s) affected by this issue are: drivers/scsi/mpi3mr/mpi3mr_fw.c Mitigation ========== The Linux kernel CVE team recommends that you update to the latest stable kernel version for this, and many other bugfixes. Individual changes are never tested alone, but rather are part of a larger kernel release. Cherry-picking individual commits is not recommended or supported by the Linux kernel community at all. If however, updating to the latest release is impossible, the individual changes to resolve this issue can be found at these commits: https://git.kernel.org/stable/c/df817b19dac7034416d18f14347010b3e9f5cf3d https://git.kernel.org/stable/c/ccff8c92571500fcfed21281e33daaf645bf692f