mirror of https://gitee.com/openkylin/libvirt.git
Reduce udevadm settle timeout to 10 seconds
This isn't a proper fix but it will make virt-manager at least start. Closes: #663931 Gbp-Pq: Topic forward Gbp-Pq: Name Reduce-udevadm-settle-timeout-to-10-seconds.patch
This commit is contained in:
parent
9a5ccdd321
commit
22e5b22189
|
@ -1247,7 +1247,7 @@ void virWaitForDevices(void)
|
|||
if (!(udev = virFindFileInPath(UDEVADM)))
|
||||
return;
|
||||
|
||||
if (!(cmd = virCommandNewArgList(udev, "settle", NULL)))
|
||||
if (!(cmd = virCommandNewArgList(udev, "settle", "--timeout=10", NULL)))
|
||||
return;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue