summaryrefslogtreecommitdiffstats
path: root/include/blkdev.h
diff options
context:
space:
mode:
authorMatthias Koenig2008-06-09 16:38:25 +0200
committerKarel Zak2008-07-30 13:21:14 +0200
commitd50c5917f07a0674e4e48a19d6902d17fb43e5bc (patch)
treea6d574006c48e6ceeafd47552e26e7636b6badc9 /include/blkdev.h
parentmount: add shortoptions for bind, move and rbind (diff)
downloadkernel-qcow2-util-linux-d50c5917f07a0674e4e48a19d6902d17fb43e5bc.tar.gz
kernel-qcow2-util-linux-d50c5917f07a0674e4e48a19d6902d17fb43e5bc.tar.xz
kernel-qcow2-util-linux-d50c5917f07a0674e4e48a19d6902d17fb43e5bc.zip
mount: retry on ENOMEDIUM
Due to a change in kernel behaviour when opening CDROM devices, we need to retry the open/mount call when ENOMEDIUM is returned. Explanation from Tejun Heo: Okay, the difference is from the addition of cdrom_get_media_event() call to both sr_drive_status() and ide_cdrom_drive_status(). Previously, the cdrom driver can't differentiate between tray closed w/ no media and tray open and always returned tray open, which triggers close and retry in the open logic which probably have delayed things enough to get the media recognized. Now the cdrom driver can discern between tray closed w/o media and device not ready for other reasons and returns -ENOMEDIUM on the former. This is all good and dandy but the problem seems that some drives report no media right after the tray is closed but it hasn't properly detected the media yet. It seems the only way to work around the problem is via sensible retries (e.g. try three times 5 secs apart) and I don't think we can add that type of retry logic into cdrom open path. Please note that the previous logic wasn't water proof. Some drives can take longer to recognize the media is there and could have failed the in-kernel retry too. Also, reading the media can take quite some time and during that period the drive reports media present but device not ready. The driver will retry the command (e.g. READ TOC for open) five times but all of them can fail w/ EMEDIUMTYPE. [kzak@redhat.com: - add CRDOM_NOMEDIUM_RETRIES to blkdev.h - add verbose message to mount.c] Signed-off-by: Matthias Koenig <mkoenig@suse.de> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'include/blkdev.h')
-rw-r--r--include/blkdev.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/blkdev.h b/include/blkdev.h
index 1b10569b9..409b5e43c 100644
--- a/include/blkdev.h
+++ b/include/blkdev.h
@@ -6,6 +6,9 @@
#define DEFAULT_SECTOR_SIZE 512
+/* open() retries when errno is ENOMEDIUM */
+#define CRDOM_NOMEDIUM_RETRIES 5
+
#if !defined(BLKROSET) && defined(__linux__)
#define BLKROSET _IO(0x12,93) /* set device read-only (0 = read-write) */