From: Christian Krause <chkr@plauener.de>
To: linux-hotplug@vger.kernel.org
Subject: Re: cd-tray immediately closed after it has been opened
Date: Thu, 31 Jul 2008 07:31:51 +0000 [thread overview]
Message-ID: <48916A67.4010507@plauener.de> (raw)
In-Reply-To: <488CCA58.7030409@plauener.de>
Hi Kay,
Kay Sievers wrote:
> On Mon, Jul 28, 2008 at 10:48, Christian Krause <chkr@plauener.de> wrote:
>
>> David Zeuthen wrote:
>>
>>> On Sun, 2008-07-27 at 21:19 +0200, Christian Krause wrote:
>>>
>>>
>>>> Before this checkin, vol_id was only called for partitioned devices and
>>>> so the CD tray stayed open.
>>>>
>>>>
>>> Probably vol_id needs to use O_NONBLOCK when opening sr devices. Does
>>> that fix it?
>>>
>>>
>> Yes, indeed using a patch like this:
>>
>> diff --git a/extras/volume_id/vol_id.c b/extras/volume_id/vol_id.c
>> index 5c4e05d..3dc9f95 100644
>> --- a/extras/volume_id/vol_id.c
>> +++ b/extras/volume_id/vol_id.c
>> @@ -224,7 +224,7 @@ int main(int argc, char *argv[])
>> goto exit;
>> }
>>
>> - fd = open(node, O_RDONLY);
>> + fd = open(node, O_RDONLY | O_NONBLOCK);
>> if (fd < 0) {
>> fprintf(stderr, "%s: error opening volume\n", node);
>> rc = 2;
>>
>> fixes the problem, too. But it looks like that this is discouraged:
>>
>> http://gitweb.freedesktop.org/?p=hal.git;a=commit;h-ab6d1b27a160895e99f3a7111a78aff68baff3
>>
>
> Just to check if its the kernel that closes the tray on open(), can you set:
> /proc/sys/dev/cdrom/autoclose
> to "0" and try again?
>
I've tried it out with a small test program which just does an
open("/dev/sr0", O_RDONLY)
and additionally with the complete udev/hal/... stack:
If autoclose = 0 then the tray is not closed otherwise it is (without
O_NONBLOCK).
If O_NONBLOCK is used, the tray is not closed, even if autoclose = 0. So
yes, it is the kernel which closes the tray.
Best regards,
Christian
next prev parent reply other threads:[~2008-07-31 7:31 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-27 19:19 cd-tray immediately closed after it has been opened Christian Krause
2008-07-27 23:35 ` David Zeuthen
2008-07-28 8:48 ` Christian Krause
2008-07-28 16:23 ` David Zeuthen
2008-07-30 17:27 ` Kay Sievers
2008-07-31 7:31 ` Christian Krause [this message]
2008-07-31 7:48 ` Kay Sievers
2008-08-01 19:23 ` David Zeuthen
2008-08-03 17:38 ` Christian Krause
2008-08-04 6:52 ` Kay Sievers
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=48916A67.4010507@plauener.de \
--to=chkr@plauener.de \
--cc=linux-hotplug@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;
as well as URLs for NNTP newsgroup(s).