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 D514B3375C3 for ; Sat, 15 Aug 2026 06:06:39 +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=1786774000; cv=none; b=c03GIF3HNv/1OlRDmOAqXzZN/ZpNYF1a/HGe6ZeibWSVhj865uIgYEuE9Y1MT/QZdQFLzU96z2UCeeGtbuLdFFJzqqUSyjr3wMdgbUdkxf1jyaoK9oS4TcyBCAOmCLQ9TiaXRM7ptIry4qpS9yxHcej8d9j9DT9sjotVllo6Jzs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786774000; c=relaxed/simple; bh=L4F2PAKf94aOZr4C7WOO2rLZC4sRGL3suuiyetfpVO8=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ZFFG06xiZmLzckHnOUg9S7SK0RWVgJDBOoQVcXv5jYjG5PGyYx37MTMCtj7heeL/GXNXdm3hKSRORZAZ2WvlpdC/LxSgWJ2FL2ZVaPQKfKeW4uOWf+vqd9GinRZOHT0Bo5GwPcUolkV8H0gUvtLJiKh9TVaWsI9WVH8pY8fOJFI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ea6ZSUBJ; 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="ea6ZSUBJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3085B1F000E9; Sat, 15 Aug 2026 06:06:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786773999; bh=rRrCHuH8/bdUNhD+7QBsl5mSJ+96FpKnvFdWyIcJnvA=; h=From:To:Cc:Subject:Date:Reply-To; b=ea6ZSUBJ6UR+XihRAAZzybdgxmkbUfOv6eKWXAw3VYflN0G9uXkiGM43AdcXxQd2E fdDAo64ylMTU5dK0Fv0IwlNdk0rDvjG5tFcgFu80gDlfXtAT4zKXdf5EeB+iVkzPGv Fcf6rCgoB/+GXgbTwB97sCGyNrh8UmQ7BbqnC+/s= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2026-68463: mmc: sdhci-esdhc-imx: use pm_runtime_resume_and_get() in suspend Date: Sat, 15 Aug 2026 15:01:05 +0900 Message-ID: <2026081503-CVE-2026-68463-4c2b@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=2380; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=KbMQYfPgqklBDC9JB8pr5z9DXhs3LK+izk75uenaId4=; b=owGbwMvMwCRo6H6F97bub03G02pJDFkNDPOdN+VEewb0TDrndiOqb86kXV/aDGKmZ0+sYW+K3 x0Qt2xyRywLgyATg6yYIsuXbTxH91ccUvQytD0NM4eVCWQIAxenAEykQJBhDs87odNzhFpdb0xc sGjxaQY7gb0u8QwLJjvGKtxRmWfO4MZusyhX6Nxl5q9xAA== 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: mmc: sdhci-esdhc-imx: use pm_runtime_resume_and_get() in suspend Replace pm_runtime_get_sync() with pm_runtime_resume_and_get() to simplify error handling. pm_runtime_resume_and_get() automatically drops the usage counter on failure, avoiding the need for a separate pm_runtime_put_noidle() call. If it fails, the device is unclocked and accessing hardware registers would cause a kernel panic, so return the error immediately. The Linux kernel CVE team has assigned CVE-2026-68463 to this issue. Affected and fixed versions =========================== Issue introduced in 6.16 with commit 676a83855614635af3bf31ad3f8fec4031f81354 and fixed in 6.18.40 with commit 5b8f11cbe8ad5726b2b63ff1574d5cffa4df18c2 Issue introduced in 6.16 with commit 676a83855614635af3bf31ad3f8fec4031f81354 and fixed in 7.1.5 with commit 6355749aebf6c78081f7096a52edcd28d2aa0fab Issue introduced in 6.16 with commit 676a83855614635af3bf31ad3f8fec4031f81354 and fixed in 7.2-rc4 with commit 8da5930144712412d85e7f868693d96ec5c2018c 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-68463 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/mmc/host/sdhci-esdhc-imx.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/5b8f11cbe8ad5726b2b63ff1574d5cffa4df18c2 https://git.kernel.org/stable/c/6355749aebf6c78081f7096a52edcd28d2aa0fab https://git.kernel.org/stable/c/8da5930144712412d85e7f868693d96ec5c2018c