fix: add missing setting of slm size in KB
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
parent
9ea6b0322e
commit
ff519debef
|
@ -3616,6 +3616,9 @@ struct Demarshaller<TOK_S_ADAPTER_INFO> {
|
|||
case TOK_FBD_GT_SYSTEM_INFO__MAX_VECS: {
|
||||
dst.SystemInfo.MaxVECS = readTokValue<decltype(dst.SystemInfo.MaxVECS)>(*tokSystemInfo);
|
||||
} break;
|
||||
case TOK_FBD_GT_SYSTEM_INFO__SLMSIZE_IN_KB: {
|
||||
dst.SystemInfo.SLMSizeInKb = readTokValue<decltype(dst.SystemInfo.SLMSizeInKb)>(*tokSystemInfo);
|
||||
} break;
|
||||
};
|
||||
tokSystemInfo = tokSystemInfo + 1 + tokSystemInfo->valueDwordCount;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue