Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1632975

Re: nvdimm/pmem device lifetime

From Dan Williams <dan.j.williams@intel.com>
Newsgroups linux.kernel
Subject Re: nvdimm/pmem device lifetime
Date 2017-04-28 17:40 +0200
Message-ID <tBg9Y-Qc-15@gated-at.bofh.it> (permalink)
References <tBg9Y-Qc-17@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Thu, Apr 27, 2017 at 9:37 PM, Mika Penttilä
<mika.penttila@nextfour.com> wrote:
> Hi,
>
> Just wondering the pmem struct device vs gendisk lifetimes.. from pmem_attach_disk():
>
>         device_add_disk(dev, disk);
>         devm_add_action_or_reset(dev, pmem_release_disk, disk);
>
>
> where:
> static void pmem_release_disk(void *disk)
> {
>         del_gendisk(disk);
>         put_disk(disk);
> }
>
>
> but device_add_disk() makes disk pin dev (as a parent), and it's unpinned by del_gendisk()
> which is called when dev is released, but it's not because of this circular dependency?

pmem_release_disk() is called when the driver is unbound, well before
the device is released. See the calls to devres_release_all() in the
device_release_driver() path.

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: nvdimm/pmem device lifetime Dan Williams <dan.j.williams@intel.com> - 2017-04-28 17:40 +0200

csiph-web