[systemd-commits] stable Branch 'v208-stable' - src/udev
Zbigniew Jędrzejewski-Szmek
zbyszek at kemper.freedesktop.org
Thu Nov 6 14:44:28 PST 2014
src/udev/ata_id/ata_id.c | 2 +-
src/udev/udev-event.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 75a17dd008d2a97df4c8901216b875382af9f570
Author: Zbigniew Jędrzejewski-Szmek <zbyszek at in.waw.pl>
Date: Thu Nov 6 17:34:43 2014 -0500
udev: bump event timeout in two more places
https://bugzilla.redhat.com/show_bug.cgi?id=1091513
diff --git a/src/udev/ata_id/ata_id.c b/src/udev/ata_id/ata_id.c
index 5e55f8d..c05175c 100644
--- a/src/udev/ata_id/ata_id.c
+++ b/src/udev/ata_id/ata_id.c
@@ -45,7 +45,7 @@
#include "libudev-private.h"
#include "log.h"
-#define COMMAND_TIMEOUT_MSEC (30 * 1000)
+#define COMMAND_TIMEOUT_MSEC (180 * 1000)
static int disk_scsi_inquiry_command(int fd,
void *buf,
diff --git a/src/udev/udev-event.c b/src/udev/udev-event.c
index 37b545b..c4c62b4 100644
--- a/src/udev/udev-event.c
+++ b/src/udev/udev-event.c
@@ -49,7 +49,7 @@ struct udev_event *udev_event_new(struct udev_device *dev)
udev_list_init(udev, &event->run_list, false);
event->fd_signal = -1;
event->birth_usec = now(CLOCK_MONOTONIC);
- event->timeout_usec = 30 * 1000 * 1000;
+ event->timeout_usec = 180 * 1000 * 1000;
return event;
}
More information about the systemd-commits
mailing list