You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(this is on line 96 of the file server-ipmi.c. The math works out to: ((4096 - 1) / 128) + 1. That goes to 33 when num_consoles is >= 4096. But 33 is greater than IPMICONSOLE_THREAD_COUNT_MAX, and libipmiconsole refuses to initialize the engine.
The workaround is to make sure that num_threads never exceeds IPMICONSOLE_THREAD_COUNT_MAX:
What steps will reproduce the problem?
Create a conman.conf file with 4,096 or more "console" entries, all using IPMI SOL, and try to run conmand. It will crash.
What version of the software are you using? On what operating system?
ConMan 0.2.7, CentOS 5.5 (kernel 2.6.18)
Please provide any additional information below.
The relevant defines:
When there are 4,096 or more consoles using IPMI SOL, the following line is run:
(this is on line 96 of the file
server-ipmi.c
. The math works out to: ((4096 - 1) / 128) + 1. That goes to 33 whennum_consoles
is >= 4096. But 33 is greater thanIPMICONSOLE_THREAD_COUNT_MAX
, and libipmiconsole refuses to initialize the engine.The workaround is to make sure that num_threads never exceeds
IPMICONSOLE_THREAD_COUNT_MAX
:Original issue reported on code.google.com by
markkawikapettit
on 27 Nov 2012 at 7:16The text was updated successfully, but these errors were encountered: