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
MAX_WLIST_BSIZE is the maximum size of an allowlist and is #defined in msr_whitelist.c as ((128 * 1024) + 1).
The maximum size of a batch array is (2^14-1), which is a function of the ioctl() interface.
While both limits can be added to the documentation, it's not clear that most users will have access to the documentation (as we're not installing man pages in expected places and the sysadmin will be doing the installation).
Should these limits be provided as part of the msr_version device?
The text was updated successfully, but these errors were encountered:
MAX_WLIST_BSIZE
is the maximum size of an allowlist and is#defined
inmsr_whitelist.c
as((128 * 1024) + 1)
.The maximum size of a batch array is
(2^14-1)
, which is a function of theioctl()
interface.While both limits can be added to the documentation, it's not clear that most users will have access to the documentation (as we're not installing man pages in expected places and the sysadmin will be doing the installation).
Should these limits be provided as part of the
msr_version
device?The text was updated successfully, but these errors were encountered: