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 8D3BA3E2ADB; Sat, 12 Sep 2026 11:46:10 +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=1789213571; cv=none; b=WrNIqeOh/jIW+eHcM1tDrM1yiVnk3noScC4YjNqX3rldAxt/lNGFrklWxALoobyP5YdGNuvPgueApuFIrsggLLEru20I7SYScZNHv96ckpYd6pmMmRKVqhcKdVYVcXuKC1AihJnCIiZtOT5WBdIn2eAQMv4nq5Uu4WCiFACi+sg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789213571; c=relaxed/simple; bh=0z10gy4LrBAiRv90ZEDM2YKod1g8Btdp4XZmOXUsn8c=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WbJhm9icZQ/7gUtIARabk+UbRZpbAM5hLlO5UV44Q213GNHAvO5niR7ogxreEm2jHN238eR91QGaUoCzO4HoHcT/ruzb3WcXO2PVly3GQoSieoYJxJ+3n/XXEFbteTxd86jbyJLOUb2waucgL1r/HXHFAtui7eKoHrDFNPt+8bM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Ugy1+mTS; 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="Ugy1+mTS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 92B511F000FF; Sat, 12 Sep 2026 11:46:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789213570; bh=lEOg1VIuO/WlCJ0Xb2zlxhBAy+GRKJTE6nOwoADZhVU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Ugy1+mTSZufe7mwqfD9joZkpBs7L7wvfD5ZSjlKXiw9GNfOmNiLd6DT4tVal5/XuL mPSgwvnh2qR9MY054ulaxMfbadGjdFpQSMvGgh2RRlqnGcj3qcvLcX60xm7Ta/pfIA nyQEuFGovX+WJKhWLH1Q1MpGNjX0rBtVVIuXQImw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Maxwell Doose , Andy Shevchenko , Sanjay Chitroda , Srinivas Pandruvada , Jonathan Cameron Subject: [PATCH 6.12 0150/1376] iio: temperature: hid-sensor-temperature: switch to non-devm iio_device_register() Date: Sat, 12 Sep 2026 08:42:56 +0200 Message-ID: <20260912065610.894339494@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065607.535295758@linuxfoundation.org> References: <20260912065607.535295758@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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sanjay Chitroda commit 967d066f5334740f656577bc51c381a1bb707b61 upstream. Avoid using devm_iio_device_register(), as this driver requires explicit error handling and teardown ordering. With devm_iio_device_register(), IIO device remains registered until the devres cleanup phase. However, driver's remove() callback removes the sensor hub callback and trigger support. This can create a race window where IIO device is still visible and read_raw() requests are issued. These requests might call sensor_hub_input_attr_get_raw_value(), which waits up to 5 seconds for a response from the sensor hub callback that has already been removed. Add an explicit iio_device_unregister() call in the teardown path to ensure deterministic cleanup, so that userspace can no longer access the device once backend resources begin to be dismantled. Fixes: 59d0f2da3569 ("iio: hid: Add temperature sensor support") Cc: stable@vger.kernel.org Reviewed-by: Maxwell Doose Reviewed-by: Andy Shevchenko Signed-off-by: Sanjay Chitroda Acked-by: Srinivas Pandruvada Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/temperature/hid-sensor-temperature.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/iio/temperature/hid-sensor-temperature.c +++ b/drivers/iio/temperature/hid-sensor-temperature.c @@ -243,7 +243,7 @@ static int hid_temperature_probe(struct if (ret) goto error_remove_trigger; - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev); + ret = iio_device_register(indio_dev); if (ret) goto error_remove_callback; @@ -263,6 +263,7 @@ static void hid_temperature_remove(struc struct iio_dev *indio_dev = platform_get_drvdata(pdev); struct temperature_state *temp_st = iio_priv(indio_dev); + iio_device_unregister(indio_dev); sensor_hub_remove_callback(hsdev, HID_USAGE_SENSOR_TEMPERATURE); hid_sensor_remove_trigger(indio_dev, &temp_st->common_attributes); }