On Wed, Mar 13, 2019 at 05:09:43PM +0100, Igor Mammedov wrote: >On Wed, 13 Mar 2019 13:33:59 +0000 >Wei Yang <richard.weiy...@gmail.com> wrote: > >> >> I am lost at this place. >> >> sig is a part of ACPI table header, you mean the sig is not necessary to >> be set in ACPI table header? >> >> "skip table generation" means remove build_header() in build_mcfg()? >I mean do not call build_mcfg() at all when you don't have to. > >And when you need to keep table_blob the same size (for old machines) >using acpi_data_push() to reserve space instead of build_mcfg(sig="QEMU") >might just work as well. it's still hack but it can live in x86 specific >acpi_build() keeping build_mcfg() generic. > >As for defining what to use as criteria to decide when we need to keep >table_blob size the same, I don't remember history of it, so I'd suggest >to look at commit a1666142, study history of acpi_ram_update() and >legacy_acpi_table_size to figure out since which machine type one doesn't >have to keep table_blob size the same. >
Hi, Igor It took me sometime to go through the migration infrastructure. Before continuing, I'd like to talk about what I understand to make sure my direction is correct. ACPI has a structure named AcpiBuildState, which contains all related information. During migration, those data in AcpiBuildState should be transferred to destination, e.g. table_mr, rsdp_mr and link_mr. In the case related to mcfg, the problem lies in table_mr. And the reason breaking migration is the size of table_mr is different between source and destination.(This reason is a guess from those change logs and mails.) The migration infrastructure has several SaveStateEntry to help migrate different elements. The one with name "ram" take charge of RAMBlock. So this SaveStateEntry and its ops is the next step for me to investigate. And from this to see the effect of different size MemoryRegion during migration. Is this sounds correct? -- Wei Yang Help you, Help me