From 9ba7155cfe8dabb2beb540ffb24b3d14e17f357d Mon Sep 17 00:00:00 2001 From: njl Date: Mon, 15 Sep 2003 21:20:55 +0000 Subject: [PATCH] Bump the EC timeout from 50 to 100 ms. I believe the underlying issue is global lock contention as symptoms only appear under heavy load (i.e. the nightly periodic run). --- sys/dev/acpica/acpi_ec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/acpica/acpi_ec.c b/sys/dev/acpica/acpi_ec.c index c81de31bf5d8..eb0aa2040225 100644 --- a/sys/dev/acpica/acpi_ec.c +++ b/sys/dev/acpica/acpi_ec.c @@ -283,7 +283,7 @@ struct acpi_ec_softc { #define EC_POLL_DELAY 1 /* Total time in ms spent in the poll loop waiting for a response. */ -#define EC_POLL_TIMEOUT 50 +#define EC_POLL_TIMEOUT 100 #define EVENT_READY(event, status) \ (((event) == EC_EVENT_OUTPUT_BUFFER_FULL && \