23 lines
902 B
Diff
23 lines
902 B
Diff
|
From e323253480b01f0df71ee409cbf9aba88ec1a5e4 Mon Sep 17 00:00:00 2001
|
||
|
From: Kay Sievers <kay@vrfy.org>
|
||
|
Date: Wed, 30 Oct 2013 14:34:58 +0100
|
||
|
Subject: [PATCH] udev: ata_id: log faling ioctls as "debug"
|
||
|
|
||
|
---
|
||
|
src/udev/ata_id/ata_id.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/udev/ata_id/ata_id.c b/src/udev/ata_id/ata_id.c
|
||
|
index 68a06b9..d375d43 100644
|
||
|
--- a/src/udev/ata_id/ata_id.c
|
||
|
+++ b/src/udev/ata_id/ata_id.c
|
||
|
@@ -501,7 +501,7 @@ int main(int argc, char *argv[])
|
||
|
} else {
|
||
|
/* If this fails, then try HDIO_GET_IDENTITY */
|
||
|
if (ioctl(fd, HDIO_GET_IDENTITY, &id) != 0) {
|
||
|
- log_info("HDIO_GET_IDENTITY failed for '%s': %m\n", node);
|
||
|
+ log_debug("HDIO_GET_IDENTITY failed for '%s': %m\n", node);
|
||
|
rc = 2;
|
||
|
goto close;
|
||
|
}
|