|
Re: [PATCH v2 2/5] hv:add pre-condition for vm APIs
By
Mingqiang Chi
·
#28049
·
|
|
Re: [PATCH v2 3/5] hv: add pre-condition for vcpu APIs
By
Mingqiang Chi
·
#28048
·
|
|
Re: [PATCH v2 2/5] hv:add pre-condition for vm APIs
By
Eddie Dong
·
#28047
·
|
|
Re: [PATCH v2 3/5] hv: add pre-condition for vcpu APIs
By
Eddie Dong
·
#28046
·
|
|
[RFC PATCH 2/2] hv: vapic: add mcfg table support
Add MCFG table support to allow guest access PCIe external CFG space by ECAM
Tracked-On: #4623
Signed-off-by: Li Fei1 <fei1.li@...>
---
hypervisor/arch/x86/configs/vacpi.c | 31
Add MCFG table support to allow guest access PCIe external CFG space by ECAM
Tracked-On: #4623
Signed-off-by: Li Fei1 <fei1.li@...>
---
hypervisor/arch/x86/configs/vacpi.c | 31
|
By
Li, Fei1
·
#28045
·
|
|
[RFC PATCH 1/2] hv: vacpi: add fadt table support
Add FADT table support to support guest S5 setting.
According to ACPI 6.3 Spec, OSPM must ignored the DSDT and FACS fields if them're zero.
However, Linux kernel seems not to abide by the protocol,
Add FADT table support to support guest S5 setting.
According to ACPI 6.3 Spec, OSPM must ignored the DSDT and FACS fields if them're zero.
However, Linux kernel seems not to abide by the protocol,
|
By
Li, Fei1
·
#28044
·
|
|
[RFC PATCH 0/2] vacpi: complete ACPI table to describe resource for pre-launched VM
1. We need to add S5 support for pre-launched VM which needs FADT table.
2. We need to support pre-launched VM PCIe external CFG space ECAM access which needs MCFG
Li Fei1 (2):
hv: vacpi: add fadt
1. We need to add S5 support for pre-launched VM which needs FADT table.
2. We need to support pre-launched VM PCIe external CFG space ECAM access which needs MCFG
Li Fei1 (2):
hv: vacpi: add fadt
|
By
Li, Fei1
·
#28043
·
|
|
[PATCH] vhm: add vm_configs array to get_platform_info hypercall
Both the size of the vm_configs entry and the number of elements are various
on different platforms and different VM configurations. In order to
collect this array, the caller needs to assign
Both the size of the vm_configs entry and the number of elements are various
on different platforms and different VM configurations. In order to
collect this array, the caller needs to assign
|
By
Chen, Zide
·
#28042
·
|
|
2020 ACRN Project Technical Community Meeting Minutes - WW16'20
Special Notes: If you have Zoom connection issue by using web browser, please launch Zoom application, manually input the meeting ID(320664063) to join the Zoom meeting.
ACRN Project TCM - 15th Apr
Special Notes: If you have Zoom connection issue by using web browser, please launch Zoom application, manually input the meeting ID(320664063) to join the Zoom meeting.
ACRN Project TCM - 15th Apr
|
By
Zou, Terry
·
#28041
·
|
|
Re: [PATCH v2 1/1] dm:refine pm_vuart code
Acked-by: Wang, Yu1 <yu1.wang@...>
Acked-by: Wang, Yu1 <yu1.wang@...>
|
By
Yu Wang
·
#28040
·
|
|
[PATCH v2 5/5] hv: add global lock for vm & vcpu state change
From: Jason Chen CJ <jason.cj.chen@...>
rename the vmm_hypercall_lock to vmm_global_lock and use it
as the global lock for all vm & vcpu state change
Tracked-On: #4320
Signed-off-by: Jason
From: Jason Chen CJ <jason.cj.chen@...>
rename the vmm_hypercall_lock to vmm_global_lock and use it
as the global lock for all vm & vcpu state change
Tracked-On: #4320
Signed-off-by: Jason
|
By
Mingqiang Chi
·
#28039
·
|
|
[PATCH v2 4/5] dm: add vm_pause before vm_destroy
From: Mingqiang Chi <mingqiang.chi@...>
now VM state transition only allows VM_PAUSED to
VM_POWERED_OFF, this patch call vm_pause before vm_destroy
in some vm failure cases.
Tracked-On:
From: Mingqiang Chi <mingqiang.chi@...>
now VM state transition only allows VM_PAUSED to
VM_POWERED_OFF, this patch call vm_pause before vm_destroy
in some vm failure cases.
Tracked-On:
|
By
Mingqiang Chi
·
#28038
·
|
|
[PATCH v2 3/5] hv: add pre-condition for vcpu APIs
From: Mingqiang Chi <mingqiang.chi@...>
remove unnecessary state check and
add pre-condition for vcpu APIs.
Tracked-On: #4320
Signed-off-by: Mingqiang Chi <mingqiang.chi@...>
---
From: Mingqiang Chi <mingqiang.chi@...>
remove unnecessary state check and
add pre-condition for vcpu APIs.
Tracked-On: #4320
Signed-off-by: Mingqiang Chi <mingqiang.chi@...>
---
|
By
Mingqiang Chi
·
#28037
·
|
|
[PATCH v2 2/5] hv:add pre-condition for vm APIs
From: Jason Chen CJ <jason.cj.chen@...>
check the vm state in hypercall api,
add pre-condition for vm api.
Tracked-On: #4320
Signed-off-by: Mingqiang Chi <mingqiang.chi@...>
---
From: Jason Chen CJ <jason.cj.chen@...>
check the vm state in hypercall api,
add pre-condition for vm api.
Tracked-On: #4320
Signed-off-by: Mingqiang Chi <mingqiang.chi@...>
---
|
By
Mingqiang Chi
·
#28036
·
|
|
[PATCH v2 1/5] hv: move out pause_vm from shutdown_vm
From: Mingqiang Chi <mingqiang.chi@...>
now it will call pause_vm in shutdown_vm,
move it out from shutdown_vm to reduce coupling.
Tracked-On: #4320
Signed-off-by: Mingqiang Chi
From: Mingqiang Chi <mingqiang.chi@...>
now it will call pause_vm in shutdown_vm,
move it out from shutdown_vm to reduce coupling.
Tracked-On: #4320
Signed-off-by: Mingqiang Chi
|
By
Mingqiang Chi
·
#28035
·
|
|
[PATCH v2 0/5] add pre-condition for vm & vcpu state transition
From: Mingqiang Chi <mingqiang.chi@...>
v1-->v2:
-- add pre-condition for vm & cpu state transition instead of
check state before state transition.
-- to simplify the implementation,use a
From: Mingqiang Chi <mingqiang.chi@...>
v1-->v2:
-- add pre-condition for vm & cpu state transition instead of
check state before state transition.
-- to simplify the implementation,use a
|
By
Mingqiang Chi
·
#28034
·
|
|
2020 ACRN TCM Meeting: Please launch Zoom application and manually input meeting ID (320664063) to join ACRN TCM meeting.
Hi all,
If you have Zoom connection issue by using web browser, please launch Zoom application, manually input the meeting ID (320664063)to join the Zoom meeting.
Zoom has security hole which are
Hi all,
If you have Zoom connection issue by using web browser, please launch Zoom application, manually input the meeting ID (320664063)to join the Zoom meeting.
Zoom has security hole which are
|
By
Wang, Hongbo
·
#28033
·
|
|
Re: [PATCH V5 0/3] Acrn support Splitlock Access detection
Hi, Eddie
By
Tao, Yuhong
·
#28032
·
|
|
Re: 2020 ACRN Project Technical Community Meeting (2020/1~2020/7): @ Weekly Wednesday 4PM (China-Shanghai), Wednesday 9AM (Europe-London), Tuesday 0AM (US-West Coast),
Hi all,
· There is some issues about login in Zoom use web, please use Zoom PC client to login in and input “Zoom Meeting ID:320 664 063”, thanks!
BRs,
Xiangyang Wu.
Hi all,
· There is some issues about login in Zoom use web, please use Zoom PC client to login in and input “Zoom Meeting ID:320 664 063”, thanks!
BRs,
Xiangyang Wu.
|
By
Wu, Xiangyang
·
#28031
·
|
|
Re: [PATCH V5 2/3] HV: enable #AC for Splitlock Access
#ac
HI, Eddie
By
Tao, Yuhong
·
#28030
·
|