mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-20 20:53:46 +00:00
Fix compile error caused by missing memcpy function
On some toolchain configurations direct struct assignments will default to a memcpy operation which is not present in this environment, so explicitly use the internal memcpy_s function. Signed-of-by: Rusty Lynch <rusty.lynch@intel.com>
This commit is contained in:
parent
7a18425780
commit
80a7dda419
@ -34,6 +34,7 @@
|
|||||||
#include <acrn_hv_defs.h>
|
#include <acrn_hv_defs.h>
|
||||||
#include <hv_debug.h>
|
#include <hv_debug.h>
|
||||||
#include <hkdf.h>
|
#include <hkdf.h>
|
||||||
|
#include "rtl.h"
|
||||||
|
|
||||||
_Static_assert(NR_WORLD == 2, "Only 2 Worlds supported!");
|
_Static_assert(NR_WORLD == 2, "Only 2 Worlds supported!");
|
||||||
|
|
||||||
@ -294,7 +295,8 @@ static bool setup_trusty_info(struct vcpu *vcpu,
|
|||||||
/* TODO: prepare vkey_info */
|
/* TODO: prepare vkey_info */
|
||||||
|
|
||||||
/* copy key_info to the first page of trusty memory */
|
/* copy key_info to the first page of trusty memory */
|
||||||
mem->first_page.key_info = g_key_info;
|
memcpy_s(&mem->first_page.key_info, sizeof(g_key_info),
|
||||||
|
&g_key_info, sizeof(g_key_info));
|
||||||
|
|
||||||
memset(mem->first_page.key_info.dseed_list, 0,
|
memset(mem->first_page.key_info.dseed_list, 0,
|
||||||
sizeof(mem->first_page.key_info.dseed_list));
|
sizeof(mem->first_page.key_info.dseed_list));
|
||||||
|
Loading…
Reference in New Issue
Block a user