diff options
author | sbruno <sbruno@FreeBSD.org> | 2013-07-30 18:44:29 +0000 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2013-07-30 18:44:29 +0000 |
commit | a8facfe26bcbcabeeac469efe49583c0bb3a63f1 (patch) | |
tree | 59506c7049b22b0898c7d2225945f6015b9a268c /sys/dev | |
parent | 0817cf693b9f215ce7beeeda3f7a96c9afd1210b (diff) | |
download | FreeBSD-src-a8facfe26bcbcabeeac469efe49583c0bb3a63f1.zip FreeBSD-src-a8facfe26bcbcabeeac469efe49583c0bb3a63f1.tar.gz |
empirical testing showed that 3 seconds is just too slow for GET_DEVICE_ID
to return on newer Dell hardware. Bump to 6 second timeouts until someone
has a better idea on how to handle this
Reviewed by: jhb@
MFC after: 2 weeks
Sponsored by: Yahoo! Inc.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ipmi/ipmivars.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ipmi/ipmivars.h b/sys/dev/ipmi/ipmivars.h index 614c6be..8e9e130 100644 --- a/sys/dev/ipmi/ipmivars.h +++ b/sys/dev/ipmi/ipmivars.h @@ -219,7 +219,7 @@ struct ipmi_ipmb { ((sc)->ipmi_io_res[1] != NULL ? OUTB_MULTIPLE(sc, x, value) : \ OUTB_SINGLE(sc, x, value)) -#define MAX_TIMEOUT 3 * hz +#define MAX_TIMEOUT 6 * hz int ipmi_attach(device_t); int ipmi_detach(device_t); |