diff options
author | Tom Gundersen <teg@jklm.no> | 2014-09-10 10:56:26 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-09-10 18:10:06 +0200 |
commit | b5338a19864ac3f5632aee48069a669479621dca (patch) | |
tree | 60c9d10f3282bb27cf4dfcae825dc82ae18909c6 /src | |
parent | ec3281d3b681b002dfe1a4bea0532a504e37557a (diff) |
udev: timeout - increase timeout
Some kernel modules still take more than one minute to insmod, we no longer rely on the timeout
killing insmod within a given period of time, so just bump this to a much higher value. Its only
purpose is to make sure that nothing stays aronud forever.
Diffstat (limited to 'src')
-rw-r--r-- | src/udev/udevd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udevd.c b/src/udev/udevd.c index b023b6ee4c..a7f8cbdf5b 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -74,7 +74,7 @@ static bool reload; static int children; static int children_max; static int exec_delay; -static usec_t event_timeout_usec = 60 * USEC_PER_SEC; +static usec_t event_timeout_usec = 180 * USEC_PER_SEC; static sigset_t sigmask_orig; static UDEV_LIST(event_list); static UDEV_LIST(worker_list); |