From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: Bart Van Assche <bart.vanassche@sandisk.com>,
Dan Williams <dan.j.williams@intel.com>
Cc: "linux-block@vger.kernel.org" <linux-block@vger.kernel.org>,
linux-scsi <linux-scsi@vger.kernel.org>,
Jens Axboe <axboe@fb.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
Christoph Hellwig <hch@lst.de>, Tejun Heo <tj@kernel.org>,
Dave Hansen <dave.hansen@intel.com>
Subject: Re: Time to make dynamically allocated devt the default for scsi disks?
Date: Thu, 01 Sep 2016 08:10:05 -0700 [thread overview]
Message-ID: <1472742605.2569.23.camel@HansenPartnership.com> (raw)
In-Reply-To: <cf141c9f-2bda-060a-0a7d-86638c2f5818@sandisk.com>
On Mon, 2016-08-29 at 11:16 -0700, Bart Van Assche wrote:
> On 08/14/2016 10:21 AM, James Bottomley wrote:
> > diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
> > index d3e852a..222771d 100644
> > --- a/drivers/scsi/sd.c
> > +++ b/drivers/scsi/sd.c
> > @@ -3000,7 +3000,13 @@ static void sd_probe_async(void *data,
> > async_cookie_t cookie)
> > }
> >
> > blk_pm_runtime_init(sdp->request_queue, dev);
> > - device_add_disk(dev, gd);
> > + /*
> > + * previously the parent of the gendisk was the scsi
> > device. It
> > + * was moved to fix lifetime rules, so now we install a
> > symlink
> > + * to the new location of the block class directory
> > + */
> > + device_add_disk(&sdkp->dev, gd);
> > + WARN_ON(sysfs_add_link_to_group(&dev->kobj, "block", &sdkp
> > ->dev.kobj, "block"));
> > if (sdkp->capacity)
> > sd_dif_config_host(sdkp);
> >
> > @@ -3142,6 +3148,7 @@ static int sd_remove(struct device *dev)
> >
> > async_synchronize_full_domain(&scsi_sd_pm_domain);
> > async_synchronize_full_domain(&scsi_sd_probe_domain);
> > + sysfs_remove_link(&dev->kobj, "block");
> > device_del(&sdkp->dev);
> > del_gendisk(sdkp->disk);
> > sd_shutdown(dev);
>
> Hello James,
>
> Sorry that it took so long before I could test this patch and
> the previous patch that was posted in this e-mail thread. But I
> did so earlier this morning. What I see is that the following
> warning message is reported frequently:
>
> WARNING: CPU: 1 PID: 136 at drivers/scsi/sd.c:3009
> sd_probe_async+0x1ce/0x1e0
That's because the link is created too early, I think. Let me dig into
this; I managed to hose my big device machine, so I'll need time to
resurrect it.
James
next prev parent reply other threads:[~2016-09-01 15:10 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-12 21:29 Time to make dynamically allocated devt the default for scsi disks? Dan Williams
2016-08-12 21:35 ` Bart Van Assche
2016-08-12 21:35 ` Bart Van Assche
2016-08-12 23:32 ` Dan Williams
2016-08-13 0:17 ` James Bottomley
2016-08-13 0:29 ` Dan Williams
2016-08-13 4:57 ` Dan Williams
2016-08-13 15:23 ` James Bottomley
2016-08-13 16:29 ` Dan Williams
2016-08-13 17:43 ` James Bottomley
2016-08-13 18:27 ` Dan Williams
2016-08-13 20:38 ` Dan Williams
2016-08-14 17:20 ` James Bottomley
2016-08-14 18:08 ` Dan Williams
2016-08-14 18:23 ` Dan Williams
2016-08-15 20:11 ` Bart Van Assche
2016-08-29 18:16 ` Bart Van Assche
2016-08-29 18:16 ` Bart Van Assche
2016-08-30 20:43 ` Dan Williams
2016-08-30 20:43 ` Dan Williams
2016-08-30 20:53 ` Bart Van Assche
2016-09-01 15:10 ` James Bottomley [this message]
2016-08-13 12:13 ` Tejun Heo
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=1472742605.2569.23.camel@HansenPartnership.com \
--to=james.bottomley@hansenpartnership.com \
--cc=axboe@fb.com \
--cc=bart.vanassche@sandisk.com \
--cc=dan.j.williams@intel.com \
--cc=dave.hansen@intel.com \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=tj@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.