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
I am attempting to start abrmd with --max-sessions 10 (for example), however I receive the following error message:
** (tpm2-abrmd:2152): CRITICAL **: 16:03:04.127: max-sessions must be between 1 and 4
The error comes from tabrmd-options.c, where TABRMD_SESSIONS_MAX_DEFAULT is the upper limit for the maximum possible number of sessions. Initially MAX_SESSIONS (64) was used when the command-line option was introduced, but later it was changed to TABRMD_SESSIONS_MAX_DEFAULT (4). Now it looks like nothing is using the TABRMD_SESSIONS_MAX macro.
Is this intentional to limit sessions to 4?
Thanks!
John
The text was updated successfully, but these errors were encountered:
Hi,
I am attempting to start abrmd with
--max-sessions 10
(for example), however I receive the following error message:The error comes from tabrmd-options.c, where
TABRMD_SESSIONS_MAX_DEFAULT
is the upper limit for the maximum possible number of sessions. InitiallyMAX_SESSIONS
(64) was used when the command-line option was introduced, but later it was changed toTABRMD_SESSIONS_MAX_DEFAULT
(4). Now it looks like nothing is using theTABRMD_SESSIONS_MAX
macro.Is this intentional to limit sessions to 4?
Thanks!
John
The text was updated successfully, but these errors were encountered: