Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
teg committed Sep 10, 2014
1 parent ec3281d commit b5338a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/udev/udevd.c
Expand Up @@ -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);
Expand Down

0 comments on commit b5338a1

Please sign in to comment.