From: Bart Van Assche <bvanassche@acm.org>
To: Alexander Duyck <alexander.h.duyck@linux.intel.com>,
linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org
Cc: len.brown@intel.com, linux-pm@vger.kernel.org, rafael@kernel.org,
jiangshanlai@gmail.com, linux-nvdimm@lists.01.org, pavel@ucw.cz,
zwisler@kernel.org, tj@kernel.org, akpm@linux-foundation.org
Subject: Re: [driver-core PATCH v5 5/9] driver core: Establish clear order of operations for deferred probe and remove
Date: Tue, 06 Nov 2018 15:48:34 -0800 [thread overview]
Message-ID: <1541548114.196084.195.camel@acm.org> (raw)
In-Reply-To: <154145232484.29224.1635232599636954462.stgit@ahduyck-desk1.jf.intel.com>
On Mon, 2018-11-05 at 13:12 -0800, Alexander Duyck wrote:
> One change I made in addition is I replaced the use of "bool X:1" to define
> the bitfield to a "u8 X:1" setup in order to resolve some checkpatch
> warnings.
Please use "bool X:1" instead of "u8 X:1". I think it was a bad idea to make
checkpatch complain about "bool X:1" since "bool X:1" should only be avoided
in structures for which alignment must be architecture-independent. For struct
device it is fine if member alignment differs per architecture. Additionally,
changing "bool X:1" into "u8 X:1" will reduce performance on architectures that
cannot do byte addressing.
> static void __device_release_driver(struct device *dev, struct device *parent)
> {
> - struct device_driver *drv;
> + struct device_driver *drv = dev->driver;
>
> - drv = dev->driver;
> - if (drv) {
> - while (device_links_busy(dev)) {
> - __device_driver_unlock(dev, parent);
> + /*
> + * In the event that we are asked to release the driver on an
> + * interface that is still waiting on a probe we can just terminate
> + * the probe by setting async_probe to false. When the async call
> + * is finally completed it will see this state and just exit.
> + */
> + dev->async_probe = false;
> + if (!drv)
> + return;
>
> - device_links_unbind_consumers(dev);
> + while (device_links_busy(dev)) {
> + __device_driver_unlock(dev, parent);
>
> - __device_driver_lock(dev, parent);
> - /*
> - * A concurrent invocation of the same function might
> - * have released the driver successfully while this one
> - * was waiting, so check for that.
> - */
> - if (dev->driver != drv)
> - return;
> - }
> + device_links_unbind_consumers(dev);
>
> - pm_runtime_get_sync(dev);
> - pm_runtime_clean_up_links(dev);
> + __device_driver_lock(dev, parent);
> + /*
> + * A concurrent invocation of the same function might
> + * have released the driver successfully while this one
> + * was waiting, so check for that.
> + */
> + if (dev->driver != drv)
> + return;
> + }
>
> - driver_sysfs_remove(dev);
> + pm_runtime_get_sync(dev);
> + pm_runtime_clean_up_links(dev);
>
> - if (dev->bus)
> - blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
> - BUS_NOTIFY_UNBIND_DRIVER,
> - dev);
> + driver_sysfs_remove(dev);
>
> - pm_runtime_put_sync(dev);
> + if (dev->bus)
> + blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
> + BUS_NOTIFY_UNBIND_DRIVER,
> + dev);
>
> - if (dev->bus && dev->bus->remove)
> - dev->bus->remove(dev);
> - else if (drv->remove)
> - drv->remove(dev);
> + pm_runtime_put_sync(dev);
>
> - device_links_driver_cleanup(dev);
> - arch_teardown_dma_ops(dev);
> + if (dev->bus && dev->bus->remove)
> + dev->bus->remove(dev);
> + else if (drv->remove)
> + drv->remove(dev);
>
> - devres_release_all(dev);
> - dev->driver = NULL;
> - dev_set_drvdata(dev, NULL);
> - if (dev->pm_domain && dev->pm_domain->dismiss)
> - dev->pm_domain->dismiss(dev);
> - pm_runtime_reinit(dev);
> - dev_pm_set_driver_flags(dev, 0);
> + device_links_driver_cleanup(dev);
> + arch_teardown_dma_ops(dev);
> +
> + devres_release_all(dev);
> + dev->driver = NULL;
> + dev_set_drvdata(dev, NULL);
> + if (dev->pm_domain && dev->pm_domain->dismiss)
> + dev->pm_domain->dismiss(dev);
> + pm_runtime_reinit(dev);
> + dev_pm_set_driver_flags(dev, 0);
>
> - klist_remove(&dev->p->knode_driver);
> - device_pm_check_callbacks(dev);
> - if (dev->bus)
> - blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
> - BUS_NOTIFY_UNBOUND_DRIVER,
> - dev);
> + klist_remove(&dev->p->knode_driver);
> + device_pm_check_callbacks(dev);
> + if (dev->bus)
> + blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
> + BUS_NOTIFY_UNBOUND_DRIVER,
> + dev);
>
> - kobject_uevent(&dev->kobj, KOBJ_UNBIND);
> - }
> + kobject_uevent(&dev->kobj, KOBJ_UNBIND);
> }
This patch mixes functional changes with whitespace changes. Please move the
whitespace changes into a separate patch such that this patch becomes easier
to read.
> void device_release_driver_internal(struct device *dev,
> diff --git a/include/linux/device.h b/include/linux/device.h
> index 1b25c7a43f4c..fc7091d436c2 100644
> --- a/include/linux/device.h
> +++ b/include/linux/device.h
> @@ -1043,14 +1043,15 @@ struct device {
> struct iommu_group *iommu_group;
> struct iommu_fwspec *iommu_fwspec;
>
> - bool offline_disabled:1;
> - bool offline:1;
> - bool of_node_reused:1;
> + u8 offline_disabled:1;
> + u8 offline:1;
> + u8 of_node_reused:1;
> #if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
> defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
> defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL)
> - bool dma_coherent:1;
> + u8 dma_coherent:1;
> #endif
> + u8 async_probe:1;
The new async_probe field can be changed from multiple threads. Concurrent
changes of a bitfield are only safe if these are serialized in some way.
Please document the locking requirements for the async_probe bitfield in
device.h.
Thanks,
Bart.
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
next prev parent reply other threads:[~2018-11-06 23:48 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-05 21:11 [driver-core PATCH v5 0/9] Add NUMA aware async_schedule calls Alexander Duyck
2018-11-05 21:11 ` [driver-core PATCH v5 1/9] workqueue: Provide queue_work_node to queue work near a given NUMA node Alexander Duyck
2018-11-06 0:42 ` Bart Van Assche
2018-11-06 16:27 ` Alexander Duyck
2018-11-05 21:11 ` [driver-core PATCH v5 2/9] async: Add support for queueing on specific " Alexander Duyck
2018-11-07 0:50 ` Bart Van Assche
2018-11-05 21:11 ` [driver-core PATCH v5 3/9] device core: Consolidate locking and unlocking of parent and device Alexander Duyck
2018-11-05 21:11 ` [driver-core PATCH v5 4/9] driver core: Move async_synchronize_full call Alexander Duyck
2018-11-06 1:04 ` Bart Van Assche
2018-11-06 16:18 ` Alexander Duyck
2018-11-06 17:22 ` Bart Van Assche
2018-11-05 21:12 ` [driver-core PATCH v5 5/9] driver core: Establish clear order of operations for deferred probe and remove Alexander Duyck
2018-11-06 4:10 ` kbuild test robot
2018-11-06 23:51 ` Bart Van Assche
2018-11-07 0:52 ` Alexander Duyck
2018-11-23 1:23 ` Rong Chen
2018-11-23 14:19 ` Bart Van Assche
2018-11-06 23:48 ` Bart Van Assche [this message]
2018-11-07 1:34 ` Joe Perches
2018-11-08 23:42 ` Bart Van Assche
2018-11-11 14:31 ` Pavel Machek
2018-11-27 2:35 ` Dan Williams
2018-11-27 16:49 ` Alexander Duyck
2018-11-05 21:12 ` [driver-core PATCH v5 6/9] driver core: Probe devices asynchronously instead of the driver Alexander Duyck
2018-11-07 0:22 ` Bart Van Assche
2018-11-05 21:12 ` [driver-core PATCH v5 7/9] driver core: Attach devices on CPU local to device node Alexander Duyck
2018-11-07 0:24 ` Bart Van Assche
2018-11-05 21:12 ` [driver-core PATCH v5 8/9] PM core: Use new async_schedule_dev command Alexander Duyck
2018-11-07 0:24 ` Bart Van Assche
2018-11-05 21:12 ` [driver-core PATCH v5 9/9] libnvdimm: Schedule device registration on node local to the device Alexander Duyck
2018-11-07 0:26 ` Bart Van Assche
2018-11-06 0:50 ` [driver-core PATCH v5 0/9] Add NUMA aware async_schedule calls Bart Van Assche
2018-11-06 16:25 ` Alexander Duyck
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=1541548114.196084.195.camel@acm.org \
--to=bvanassche@acm.org \
--cc=akpm@linux-foundation.org \
--cc=alexander.h.duyck@linux.intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=jiangshanlai@gmail.com \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nvdimm@lists.01.org \
--cc=linux-pm@vger.kernel.org \
--cc=pavel@ucw.cz \
--cc=rafael@kernel.org \
--cc=tj@kernel.org \
--cc=zwisler@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