summaryrefslogtreecommitdiffstats
path: root/src/usr/ipmi/ipmirp.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/ipmi/ipmirp.C')
-rw-r--r--src/usr/ipmi/ipmirp.C11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/usr/ipmi/ipmirp.C b/src/usr/ipmi/ipmirp.C
index 9112fdabd..3e4141ad0 100644
--- a/src/usr/ipmi/ipmirp.C
+++ b/src/usr/ipmi/ipmirp.C
@@ -268,11 +268,16 @@ void IpmiRP::getInterfaceCapabilities(void)
// Protect the members as we're on another thread.
mutex_lock(&iv_mutex);
-
- iv_outstanding_req = data[0];
+ // @TODO RTC:123041 - In theory the number of outstanding requests is
+ // set via the response data below, but currently the response
+ // value isn't correct so the default will be used.
+ //iv_outstanding_req = data[0];
iv_xmit_buffer_size = data[1];
iv_recv_buffer_size = data[2];
- iv_bmc_timeout = data[3];
+ // @TODO RTC:123041 - In theory the BMC timeout is set via the response
+ // data below, but currently the response value isn't correct so
+ // the default will be used.
+ //iv_bmc_timeout = data[3];
iv_retries = data[4];
IPMI_TRAC("get_capabilities: requests %d, in buf %d, "
OpenPOWER on IntegriCloud