cdrom: always check_disk_change() on open
authorTejun Heo <tj@kernel.org>
Thu, 21 Apr 2011 18:54:44 +0000 (20:54 +0200)
committerJens Axboe <jaxboe@fusionio.com>
Thu, 21 Apr 2011 18:54:44 +0000 (20:54 +0200)
commitea6949b66d084a197dd7f243b72e216a71d9f2ca
treea8a25ba6eda76d3172c4dc550d65335f2ebb128b
parentf0e615c3cb72b42191b558c130409335812621d8
cdrom: always check_disk_change() on open

cdrom_open() called check_disk_change() after the rest of open path
succeeded which leads to the following bizarre behavior.

* After media change, if the device opened without O_NONBLOCK,
  open_for_data() naturally fails with -ENOMEDIA and
  check_disk_change() is never called.  The media is known to be gone
  and the open failure makes it obvious to the userland but device
  invalidation never happens.

* But if the device is opened with O_NONBLOCK, all the checks are
  bypassed and cdrom_open() doesn't notice that the media is not there
  and check_disk_change() is called and invalidation happens.

There's nothing to be gained by avoiding calling check_disk_change()
on open failure.  Common cases end up calling check_disk_change()
anyway.  All we get is inconsistent behavior.

Fix it by moving check_disk_change() invocation to the top of
cdrom_open() so that it always gets called regardless of how the rest
of open proceeds.

Note for stable: 2.6.38 and later only

Cc: stable@kernel.org
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Amit Shah <amit.shah@redhat.com>
Tested-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
drivers/cdrom/cdrom.c