mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Masami Hiramatsu <mhiramat@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Sasha Levin <sashal@kernel.org>,
	rafael@kernel.org, dakr@kernel.org
Subject: [PATCH AUTOSEL 6.12 14/37] driver core: introduce device_set_driver() helper
Date: Tue, 29 Apr 2025 19:50:59 -0400	[thread overview]
Message-ID: <20250429235122.537321-14-sashal@kernel.org> (raw)
In-Reply-To: <20250429235122.537321-1-sashal@kernel.org>

From: Dmitry Torokhov <dmitry.torokhov@gmail.com>

[ Upstream commit 04d3e5461c1f5cf8eec964ab64948ebed826e95e ]

In preparation to closing a race when reading driver pointer in
dev_uevent() code, instead of setting device->driver pointer directly
introduce device_set_driver() helper.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Link: https://lore.kernel.org/r/20250311052417.1846985-2-dmitry.torokhov@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/base/base.h | 6 ++++++
 drivers/base/core.c | 2 +-
 drivers/base/dd.c   | 7 +++----
 3 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/drivers/base/base.h b/drivers/base/base.h
index 8cf04a557bdb0..b1f20ee5dc298 100644
--- a/drivers/base/base.h
+++ b/drivers/base/base.h
@@ -179,6 +179,12 @@ int driver_add_groups(const struct device_driver *drv, const struct attribute_gr
 void driver_remove_groups(const struct device_driver *drv, const struct attribute_group **groups);
 void device_driver_detach(struct device *dev);
 
+static inline void device_set_driver(struct device *dev, const struct device_driver *drv)
+{
+	// FIXME - this cast should not be needed "soon"
+	dev->driver = (struct device_driver *)drv;
+}
+
 int devres_release_all(struct device *dev);
 void device_block_probing(void);
 void device_unblock_probing(void);
diff --git a/drivers/base/core.c b/drivers/base/core.c
index ec0ef6a0de942..97f44f0f3b4b2 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -3700,7 +3700,7 @@ int device_add(struct device *dev)
 	device_pm_remove(dev);
 	dpm_sysfs_remove(dev);
  DPMError:
-	dev->driver = NULL;
+	device_set_driver(dev, NULL);
 	bus_remove_device(dev);
  BusError:
 	device_remove_attrs(dev);
diff --git a/drivers/base/dd.c b/drivers/base/dd.c
index f0e4b4aba885c..b526e0e0f52d7 100644
--- a/drivers/base/dd.c
+++ b/drivers/base/dd.c
@@ -550,7 +550,7 @@ static void device_unbind_cleanup(struct device *dev)
 	arch_teardown_dma_ops(dev);
 	kfree(dev->dma_range_map);
 	dev->dma_range_map = NULL;
-	dev->driver = NULL;
+	device_set_driver(dev, NULL);
 	dev_set_drvdata(dev, NULL);
 	if (dev->pm_domain && dev->pm_domain->dismiss)
 		dev->pm_domain->dismiss(dev);
@@ -629,8 +629,7 @@ static int really_probe(struct device *dev, const struct device_driver *drv)
 	}
 
 re_probe:
-	// FIXME - this cast should not be needed "soon"
-	dev->driver = (struct device_driver *)drv;
+	device_set_driver(dev, drv);
 
 	/* If using pinctrl, bind pins now before probing */
 	ret = pinctrl_bind_pins(dev);
@@ -1014,7 +1013,7 @@ static int __device_attach(struct device *dev, bool allow_async)
 		if (ret == 0)
 			ret = 1;
 		else {
-			dev->driver = NULL;
+			device_set_driver(dev, NULL);
 			ret = 0;
 		}
 	} else {
-- 
2.39.5


  parent reply	other threads:[~2025-04-29 23:51 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-29 23:50 [PATCH AUTOSEL 6.12 01/37] cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 02/37] cpufreq: Do not enable by default during compile testing Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 03/37] nvmem: rockchip-otp: Move read-offset into variant-data Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 04/37] nvmem: rockchip-otp: add rk3576 variant data Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 05/37] nvmem: core: fix bit offsets of more than one byte Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 06/37] nvmem: core: verify cell's raw_len Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 07/37] nvmem: core: update raw_len if the bit reading is required Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 08/37] nvmem: qfprom: switch to 4-byte aligned reads Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 09/37] scsi: target: iscsi: Fix timeout on deleted connection Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 10/37] scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 11/37] virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 12/37] dma/mapping.c: dev_dbg support for dma_addressing_limited Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 13/37] intel_th: avoid using deprecated page->mapping, index fields Sasha Levin
2025-04-29 23:50 ` Sasha Levin [this message]
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 15/37] driver core: fix potential NULL pointer dereference in dev_uevent() Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 16/37] mei: vsc: Use struct vsc_tp_packet as vsc-tp tx_buf and rx_buf type Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 17/37] dma-mapping: avoid potential unused data compilation warning Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 18/37] cgroup: Fix compilation issue due to cgroup_mutex not being exported Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 19/37] vhost_task: fix vhost_task_create() documentation Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 20/37] vhost-scsi: protect vq->log_used with vq->mutex Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 21/37] scsi: mpi3mr: Add level check to control event logging Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 22/37] net: enetc: refactor bulk flipping of RX buffers to separate function Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 23/37] dma-mapping: Fix warning reported for missing prototype Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 24/37] ima: process_measurement() needlessly takes inode_lock() on MAY_READ Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 25/37] fs/buffer: split locking for pagecache lookups Sasha Levin
2025-04-30  0:48   ` Luis Chamberlain
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 26/37] fs/buffer: introduce sleeping flavors " Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 27/37] fs/buffer: use sleeping version of __find_get_block() Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 28/37] fs/ocfs2: " Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 29/37] fs/jbd2: " Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 30/37] fs/ext4: use sleeping version of sb_find_get_block() Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 31/37] drm/amd/display: Enable urgent latency adjustment on DCN35 Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 32/37] drm/amdgpu: Allow P2P access through XGMI Sasha Levin
2025-04-30 12:58   ` Alex Deucher
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 33/37] selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 34/37] block: fix race between set_blocksize and read paths Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 35/37] io_uring: don't duplicate flushing in io_req_post_cqe Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 36/37] bpf: fix possible endless loop in BPF map iteration Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 37/37] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora Sasha Levin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250429235122.537321-14-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=dakr@kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=rafael@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®