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 9B6B543C7D7; Tue, 21 Jul 2026 21:10:16 +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=1784668217; cv=none; b=VNIwjkW9GSou+a5AeOaeJTNyd+ZS1WCPOkONgNi1+vRWPnzfRsSXDahzZAbMUX0kKce3Z0Jiliibnd1QhpyhpUa3uJL6OCy/zjcdiiZ9np8M1k1R5vOM7oXxWIbqwQfVFgOrqYloCX/dD2gzIqUsHpRXYbm/pKFGUFhctN9mfYw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784668217; c=relaxed/simple; bh=CWG/hZUsszRkssga5PXCPuf39QyE+XOWjmt0Wci3tTs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pPBrhnvwXMUF5SK2ew1VIUKT4smY+SWLRvDQdNTd+GaS5K9erQv1rhN9J6iXFUDzV8ZXNt9/lQMqGEBH0Fh4pjbW0mvbIY2OgdXW23JNAaPi3Zx2+5xfrbM+jOQLn2b8nch2JXHMFUr4o9r/Hn+VcvLA31SIUTX6vNcg7y0uWJ0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=WkYxXp4H; 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="WkYxXp4H" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0C49C1F000E9; Tue, 21 Jul 2026 21:10:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784668216; bh=+Pp3i+ryTk9LAtBPjsU8a3NWNY2kibpljivRmEgcb/Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=WkYxXp4HemFboW5TTzjfMDpT6uLTQBsHtTQhTlEpOZqICwsl64zG1reXOJterPnyX dnhYNQ2rRovUD2tVPjxZ7zBw+ks15lFuANvIR9b+COaY/zhO5jVCISzmwPjI5OP31n X4bnD9AUnxMKvkffgUVFPwGzQOVg0biwQD9bAVM8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Biren Pandya , Stable@vger.kernel.org, Jonathan Cameron Subject: [PATCH 6.1 0055/1067] iio: accel: kxsd9: fix runtime PM imbalance on write_raw() error Date: Tue, 21 Jul 2026 17:10:56 +0200 Message-ID: <20260721152425.798821945@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@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 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Biren Pandya commit 44a5fd874bb6873bdaec59f722c1d57832fbc9df upstream. kxsd9_write_raw() takes a runtime PM reference with pm_runtime_get_sync() but returns -EINVAL directly when a scale with a non-zero integer part is requested, skipping the matching pm_runtime_put_autosuspend(). This leaks a runtime PM usage-counter reference on every such write, after which the device can no longer autosuspend. Set the error code and fall through to the existing put instead of returning early. Fixes: 9a9a369d6178 ("iio: accel: kxsd9: Deploy system and runtime PM") Signed-off-by: Biren Pandya Assisted-by: Claude:claude-opus-4-8 coccinelle Cc: Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/accel/kxsd9.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/drivers/iio/accel/kxsd9.c +++ b/drivers/iio/accel/kxsd9.c @@ -146,8 +146,9 @@ static int kxsd9_write_raw(struct iio_de if (mask == IIO_CHAN_INFO_SCALE) { /* Check no integer component */ if (val) - return -EINVAL; - ret = kxsd9_write_scale(indio_dev, val2); + ret = -EINVAL; + else + ret = kxsd9_write_scale(indio_dev, val2); } pm_runtime_mark_last_busy(st->dev);