diff options
author | Kevin Wolf <kwolf@redhat.com> | 2010-09-02 17:48:32 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-09-08 12:39:16 +0200 |
commit | 897804d6299af372a43110799cbe1d6804d5e1bc (patch) | |
tree | b44dbc5f752ef33cf923820b6ae0b78de1d31b9d /block/raw-posix.c | |
parent | b407a81e70306e8199315e39576939dc7ac925d5 (diff) |
raw-posix: Don't use file name for host_cdrom detection on Linux
On Linux, we have code to detect CD-ROMs using an ioctl. We shouldn't lose
anything but false positives by removing the check for a /dev/cd* path.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/raw-posix.c')
-rw-r--r-- | block/raw-posix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/block/raw-posix.c b/block/raw-posix.c index 72fb8cebd4..0fce449092 100644 --- a/block/raw-posix.c +++ b/block/raw-posix.c @@ -1154,9 +1154,6 @@ static int cdrom_probe_device(const char *filename) int fd, ret; int prio = 0; - if (strstart(filename, "/dev/cd", NULL)) - prio = 50; - fd = open(filename, O_RDONLY | O_NONBLOCK); if (fd < 0) { goto out; |