rename 'req_buf' field in 'struct vm_sw_info'

- rename it to 'io_shared_page' to keep consistent
   with ACRN HDL foils.

 - update related code that reference this data structure.

Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
This commit is contained in:
Yonghua Huang
2018-05-07 19:19:02 +08:00
committed by Jack Ren
parent bf0d79b69d
commit 121d14a616
5 changed files with 17 additions and 16 deletions

View File

@@ -169,7 +169,7 @@ int create_vm(struct vm_description *vm_desc, struct vm **rtn_vm)
/* Populate return VM handle */
*rtn_vm = vm;
vm->sw.req_buf = NULL;
vm->sw.io_shared_page = NULL;
status = set_vcpuid_entries(vm);
if (status)