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 4590C272E53; Thu, 20 Aug 2026 16:40:46 +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=1787244047; cv=none; b=A7eivw7l/zNOzUwaRHwm+/kYFkTTLy/NJpdJkp/YFxIinwlEBTJ49hHdhUQobUHuio3nZS7AA0QQc9AUp5n3w82kqJLDEStr7yW2VyD4pCntC0jALiYrLvpYjOrxHSGOHYJ/YdgEGbnKTd4lpQZtOQ+Zfeo9N7d2pMh/w1U8Fjs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787244047; c=relaxed/simple; bh=UG35otk6Fizb3CMJbwQGcqz/xfoKIRovPnz3Y5Dhj3k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uJrgvr8ts4C3NGFk5TzfdyzRlP5Mu560KG/SVTV8ppbr6pYyCqjoYPVsbzshXi638664A8IrBB9kxXMxSYl2PgitnhKifYaiazZOwK4kdJ0Xw+ihHDexWwJz+b8FmaxTX2OUwQXjWxyJbIhF5u2AChMD8GbRAYILVi36Lxa0whM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=GMuH9E6e; 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="GMuH9E6e" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A0F4B1F000E9; Thu, 20 Aug 2026 16:40:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787244046; bh=UGm82opAdwsidLnQLARq4wfy5U4vI+89j2S/uhCoQi0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=GMuH9E6eoLf7rKxrpVF/2yIHzWwo1Ss9PfxzWUwAKWmTmaPW7ldyUJ7JQ1+xE0FVV VceK9yPngP79h3eNP8bBEMNWt4CKZlMRik7saC/yhkxriX02Tjhj98QwBqV0D61+s0 xZlS/i83o6DNIwlPyspHqZkTS7huG8kHdFlhPTtk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Guangshuo Li , Alex Deucher Subject: [PATCH 5.10 033/235] drm/radeon: fix autosuspend cleanup during teardown Date: Thu, 20 Aug 2026 16:54:29 +0200 Message-ID: <20260820145217.437350502@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260820145216.426568665@linuxfoundation.org> References: <20260820145216.426568665@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.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guangshuo Li commit 587be7a17358ef8c0106775fcedae5a7bef50735 upstream. radeon_driver_load_kms() calls pm_runtime_use_autosuspend() for PX devices, but radeon_driver_unload_kms() does not call the matching pm_runtime_dont_use_autosuspend() during teardown. If the autosuspend delay is set to a negative value while autosuspend is enabled, the runtime PM core increments usage_count to prevent runtime suspend. Without calling pm_runtime_dont_use_autosuspend() during teardown, this reference is not dropped. The documentation for pm_runtime_use_autosuspend() also notes that it is important to undo it with pm_runtime_dont_use_autosuspend() at driver exit time, unless runtime PM was initially enabled with devm_pm_runtime_enable(). Add the missing pm_runtime_dont_use_autosuspend() call to the driver unload path. This issue was found by manual code inspection. Fixes: 10ebc0bc0934 ("drm/radeon: add runtime PM support (v2)") Signed-off-by: Guangshuo Li Signed-off-by: Alex Deucher (cherry picked from commit 0fdc1ff82ea14844c22795e9e0813c3ca03235e1) Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/radeon/radeon_kms.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/gpu/drm/radeon/radeon_kms.c +++ b/drivers/gpu/drm/radeon/radeon_kms.c @@ -71,6 +71,7 @@ void radeon_driver_unload_kms(struct drm if (radeon_is_px(dev)) { pm_runtime_get_sync(dev->dev); pm_runtime_forbid(dev->dev); + pm_runtime_dont_use_autosuspend(dev->dev); } radeon_acpi_fini(rdev);