Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-02-13 Thread gengdongjiu
On 2020/1/17 0:44, Peter Maydell wrote: > On Wed, 8 Jan 2020 at 11:33, Dongjiu Geng wrote: >> >> Record the GHEB address via fw_cfg file, when recording >> a error to CPER, it will use this address to find out >> Generic Error Data Entries and write the error. >> >> Make the HEST GHES to a GED dev

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-02-02 Thread Igor Mammedov
On Sun, 2 Feb 2020 20:44:35 +0800 gengdongjiu wrote: > sorry for the late response due to Chinese new year > > On 2020/1/28 22:41, Igor Mammedov wrote: > > On Wed, 8 Jan 2020 19:32:19 +0800 > > Dongjiu Geng wrote: > > > > in addition to comments of others: > > > >> Record the GHEB address v

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-02-02 Thread gengdongjiu
sorry for the late response due to Chinese new year On 2020/1/28 22:41, Igor Mammedov wrote: > On Wed, 8 Jan 2020 19:32:19 +0800 > Dongjiu Geng wrote: > > in addition to comments of others: > >> Record the GHEB address via fw_cfg file, when recording >> a error to CPER, it will use this address

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-28 Thread Igor Mammedov
On Tue, 28 Jan 2020 15:41:10 +0100 Igor Mammedov wrote: > On Wed, 8 Jan 2020 19:32:19 +0800 > Dongjiu Geng wrote: > > in addition to comments of others: > > > Record the GHEB address via fw_cfg file, when recording > > a error to CPER, it will use this address to find out > > Generic Error Dat

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-28 Thread Igor Mammedov
On Wed, 8 Jan 2020 19:32:19 +0800 Dongjiu Geng wrote: in addition to comments of others: > Record the GHEB address via fw_cfg file, when recording > a error to CPER, it will use this address to find out > Generic Error Data Entries and write the error. > > Make the HEST GHES to a GED device. I

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-17 Thread Philippe Mathieu-Daudé
On 1/17/20 11:47 AM, gengdongjiu wrote: On 2020/1/17 15:39, Philippe Mathieu-Daudé wrote:     table_offsets = g_array_new(false, true /* clear */,   sizeof(uint32_t)); @@ -831,7 +832,9 @@ void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-17 Thread gengdongjiu
On 2020/1/17 15:39, Philippe Mathieu-Daudé wrote: >>     table_offsets = g_array_new(false, true /* clear */, >>   sizeof(uint32_t)); >> @@ -831,7 +832,9 @@ void virt_acpi_build(VirtMachineState *vms, >> AcpiBuildTables *tables) >>   acpi_add_tabl

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-17 Thread gengdongjiu
On 2020/1/17 0:44, Peter Maydell wrote: >> .minimum_version_id = 1, >> .fields = (VMStateField[]) { >> -VMSTATE_STRUCT(ged_state, AcpiGedState, 1, vmstate_ged_state, >> GEDState), >> +VMSTATE_STRUCT(ged_state, AcpiGedState, 1, >> + vmstate_ged_state,

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-16 Thread Philippe Mathieu-Daudé
On 1/8/20 12:32 PM, Dongjiu Geng wrote: Record the GHEB address via fw_cfg file, when recording a error to CPER, it will use this address to find out Generic Error Data Entries and write the error. Make the HEST GHES to a GED device. Signed-off-by: Dongjiu Geng Signed-off-by: Xiang Zheng ---

Re: [PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-16 Thread Peter Maydell
On Wed, 8 Jan 2020 at 11:33, Dongjiu Geng wrote: > > Record the GHEB address via fw_cfg file, when recording > a error to CPER, it will use this address to find out > Generic Error Data Entries and write the error. > > Make the HEST GHES to a GED device. > > Signed-off-by: Dongjiu Geng > Signed-o

[PATCH v22 5/9] ACPI: Record the Generic Error Status Block address

2020-01-08 Thread Dongjiu Geng
Record the GHEB address via fw_cfg file, when recording a error to CPER, it will use this address to find out Generic Error Data Entries and write the error. Make the HEST GHES to a GED device. Signed-off-by: Dongjiu Geng Signed-off-by: Xiang Zheng --- hw/acpi/generic_event_device.c |