From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=55748 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OtL2U-0004hJ-DO for qemu-devel@nongnu.org; Wed, 08 Sep 2010 09:50:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OtKiq-0005cr-84 for qemu-devel@nongnu.org; Wed, 08 Sep 2010 09:29:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40391) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OtKiq-0005ch-0F for qemu-devel@nongnu.org; Wed, 08 Sep 2010 09:29:56 -0400 From: Kevin Wolf Date: Wed, 8 Sep 2010 15:29:36 +0200 Message-Id: <1283952582-17498-20-git-send-email-kwolf@redhat.com> In-Reply-To: <1283952582-17498-1-git-send-email-kwolf@redhat.com> References: <1283952582-17498-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 19/25] raw-posix: Don't use file name for host_cdrom detection on Linux List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org 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 --- 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 72fb8ce..0fce449 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; -- 1.7.2.2