From: Petr Konecny <pekon@informatics.muni.cz>
To: linux-kernel@vger.kernel.org
Subject: Disk change messages
Date: 27 Feb 2001 21:02:08 +0100 [thread overview]
Message-ID: <qwwvgpvdhdr.fsf@decibel.fi.muni.cz> (raw)
Hi,
I've been trying to use vold to automount CDs. The daemon tries to open
/dev/cdrom and if it succeeds it examines the media and mounts it under
/cdrom/volume_name.
The problem is that when there is no disk in the drive the following
message:
VFS: Disk change detected on device ide1(22,0)
is written to system log during each open call. Vold calls open every 5
seconds, so it's 17280 lines in log/day. I have been able to avoid these
messages by commenting out a line in drivers/ide/ide-cd.c (patch
included) and have not seen any problems yet.
I guess I have three questions:
1. can this patch break things ? I suppose it could happen only
if cdrom_saw_media_change was not called when the CD is changed.
2. is it possible to avoid the message by modifying vold ? E.g. finding
out that there is no media in the drive without calling open.
3. is there a clean way to avoid these repeated messages ?
Thanks, Petr
--- ide-cd.c 2001/02/22 22:30:02 1.1.1.11
+++ ide-cd.c 2001/02/27 19:51:58
@@ -601,7 +601,7 @@
/* Check for tray open. */
if (sense_key == NOT_READY) {
- cdrom_saw_media_change (drive);
+/* cdrom_saw_media_change (drive); */
} else if (sense_key == UNIT_ATTENTION) {
/* Check for media change. */
cdrom_saw_media_change (drive);
next reply other threads:[~2001-02-27 20:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-02-27 20:02 Petr Konecny [this message]
2001-02-28 12:30 ` Pavel Machek
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=qwwvgpvdhdr.fsf@decibel.fi.muni.cz \
--to=pekon@informatics.muni.cz \
--cc=linux-kernel@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
all inboxes | Powered by JetHome®