From 3515c0ad001731edd9a1cbf6e3d9a3161d37eb4b Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Fri, 16 Sep 2005 21:23:36 +0200 Subject: [PATCH] ata_id: open volume O_NONBLOCK Opticals like that and should be ok for disks too, as long as we don't read(). Signed-off-by: Kay Sievers --- extras/ata_id/ata_id.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/extras/ata_id/ata_id.c b/extras/ata_id/ata_id.c index 9579db31059..ba40555a0b1 100644 --- a/extras/ata_id/ata_id.c +++ b/extras/ata_id/ata_id.c @@ -122,10 +122,7 @@ int main(int argc, char *argv[]) goto exit; } - fd = open(node, O_RDONLY); - if (fd < 0) - if (errno == ENOMEDIUM) - fd = open(node, O_RDONLY|O_NONBLOCK); + fd = open(node, O_RDONLY|O_NONBLOCK); if (fd < 0) { err("unable to open '%s'", node); rc = 1;