]> err.no Git - util-linux/commit
mount: retry on ENOMEDIUM
authorMatthias Koenig <mkoenig@suse.de>
Mon, 9 Jun 2008 14:38:25 +0000 (16:38 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 12 Dec 2008 12:33:11 +0000 (13:33 +0100)
commit7e208101d9a6c7b32aaae4457333ead509caf424
tree875f9ae90ad61b863a6a900dc4d4ad4c25cc51fc
parent6acdba0c27b2b8dae0605f5f424debbdb495487f
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>
include/blkdev.h
mount/fsprobe_volumeid.c
mount/mount.c