From: Aaron Lu <aaron.lu@amd.com>
To: Betty Dall <betty.dall@hp.com>
Cc: Jeff Garzik <jgarzik@pobox.com>,
Alan Stern <stern@rowland.harvard.edu>,
Lin Ming <minggr@gmail.com>, <linux-kernel@vger.kernel.org>,
<linux-pm@vger.kernel.org>, <linux-scsi@vger.kernel.org>,
<linux-ide@vger.kernel.org>, Aaron Lu <aaron.lwe@gmail.com>
Subject: Re: [PATCH 5/5] block: genhd: add an interface to set disk's poll interval
Date: Wed, 25 Jul 2012 10:47:38 +0800 [thread overview]
Message-ID: <20120725024737.GA2395@aarontestpc.amd.com> (raw)
In-Reply-To: <1343156106.25735.59.camel@ejdallLaptop>
Hi Betty,
On Tue, Jul 24, 2012 at 12:55:06PM -0600, Betty Dall wrote:
> > > > diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
> > > > index 2f159aa..78c4226 100644
> > > > --- a/drivers/scsi/sr.c
> > > > +++ b/drivers/scsi/sr.c
> > > > @@ -869,6 +869,7 @@ static int sr_probe(struct device *dev)
> > > > dev_set_drvdata(dev, cd);
> > > > disk->flags |= GENHD_FL_REMOVABLE;
> > > > add_disk(disk);
> > > > + disk_events_set_poll_msecs(disk, 2000);
> > >
> > > Could you check that disk event's poll_msecs is the default (-1) before
> > > setting it to 2s? I am thinking of a case when the probe happens after
> > > the call to disk_events_poll_msecs_store() and this code would overwrite
> > > the user specified value.
> >
> > The block device sr0 is created by this driver in this probe function,
> > so the user should not be able to set the poll interval before probe,
> > right?
>
> The add_disk() call happens immediately before the new
> disk_events_set_poll_msecs() call. add_disk() is what eventually creates
> the sysfs files
Right, and it's disk_add_events in add_disk that adds these sysfs files.
> and calls your new disk_events_set_poll_msecs().
No... there is no call to disk_events_set_poll_msecs in add_disk, when
the events for the disk is created by disk_alloc_events, the poll_msecs
of the event is initialized to the default value -1. And then
disk_add_events will create the sysfs files and add_disk will return,
and I'll change the default value of -1 to 2000 with the new function
I've made.
> It makes more sense to me to have the new call to
> disk_events_set_poll_msecs(disk, 2000) before the call to add_disk().
This is too early, since the events of the disk is not allocated yet.
I hope I've explained this clearly, if you see a problem, please let me
know, thanks.
-Aaron
prev parent reply other threads:[~2012-07-25 2:47 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-23 6:49 [PATCH 0/5] Fix for ZPODD Aaron Lu
2012-07-23 6:49 ` [PATCH 1/5] scsi: sr: fix for sr suspend and resume Aaron Lu
2012-07-23 14:50 ` Alan Stern
2012-07-23 6:49 ` [PATCH 2/5] scsi: sr: runtime pm when ODD is open/closed Aaron Lu
2012-07-23 14:57 ` Alan Stern
2012-07-23 6:49 ` [PATCH 3/5] scsi: sr: block events when runtime suspended Aaron Lu
2012-07-23 6:49 ` [PATCH 4/5] scsi: pm: use runtime resume callback if available Aaron Lu
2012-07-23 14:36 ` Sergei Shtylyov
2012-07-23 23:30 ` Aaron Lu
2012-07-23 6:49 ` [PATCH 5/5] block: genhd: add an interface to set disk's poll interval Aaron Lu
2012-07-23 18:43 ` Betty Dall
2012-07-23 23:52 ` Aaron Lu
2012-07-24 18:55 ` Betty Dall
2012-07-25 2:47 ` Aaron Lu [this message]
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=20120725024737.GA2395@aarontestpc.amd.com \
--to=aaron.lu@amd.com \
--cc=aaron.lwe@gmail.com \
--cc=betty.dall@hp.com \
--cc=jgarzik@pobox.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=minggr@gmail.com \
--cc=stern@rowland.harvard.edu \
/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