diff options
author | Shilpasri G Bhat <shilpa.bhat@linux.vnet.ibm.com> | 2017-07-28 00:45:27 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-07-28 14:53:19 +1000 |
commit | d253cc64fedbfd92d082f3ec48646c36455fb00f (patch) | |
tree | 2feeaab17efa0975c93f11043422b42d3a4fb7d6 /include/opal-msg.h | |
parent | 1f687a3fd083ed3888c3c0d609cd314ffbab01aa (diff) | |
download | skiboot-d253cc64fedbfd92d082f3ec48646c36455fb00f.zip skiboot-d253cc64fedbfd92d082f3ec48646c36455fb00f.tar.gz skiboot-d253cc64fedbfd92d082f3ec48646c36455fb00f.tar.bz2 |
opal-msg: Increase the max-async completion count by max chips possible
OPAL-OCC command-response framework will also use async requests.
So bump up the max-async completion requests to accommodate
maximum number of chips possible.
Signed-off-by: Shilpasri G Bhat <shilpa.bhat@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include/opal-msg.h')
-rw-r--r-- | include/opal-msg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opal-msg.h b/include/opal-msg.h index a75bc4e..74163c4 100644 --- a/include/opal-msg.h +++ b/include/opal-msg.h @@ -25,7 +25,7 @@ * ideally the value matches to the number of modules using async * infrastructure, but not necessarily the same.. */ -#define OPAL_MAX_ASYNC_COMP 8 +#define OPAL_MAX_ASYNC_COMP 16 int _opal_queue_msg(enum opal_msg_type msg_type, void *data, void (*consumed)(void *data), size_t num_params, |