On Wed, Jun 24, 2026 at 01:38:32AM +0900, Akihiko Odaki wrote: > On 2026/06/24 0:45, Peter Xu wrote: > > On Tue, Jun 23, 2026 at 09:05:22PM +0900, Akihiko Odaki wrote: > > > On 2026/06/23 5:23, Peter Xu wrote: > > > > On Thu, Jun 11, 2026 at 03:35:47PM +0900, Akihiko Odaki wrote: > > > > > Supersedes: > > > > > <[email protected]> > > > > > ("[PATCH] system/physmem: Assert migration invariants") > > > > > > > > > > ram_mig_ram_block_resized() already aborts migration when migratable > > > > > RAM > > > > > is resized. Extend the same handling to other unsupported changes to > > > > > the > > > > > migratable RAMBlock set, such as removing a migratable RAMBlock or > > > > > changing a RAMBlock's migratable state. > > > > > > > > > > Signed-off-by: Akihiko Odaki <[email protected]> > > > > > --- > > > > > Akihiko Odaki (3): > > > > > system/physmem: Pass RAMBlock to RAMBlockNotifier callbacks > > > > > system/physmem: Notify RAMBlock migratable and idstr changes > > > > > migration/ram: Abort on unsupported migratable RAM changes > > > > > > > > Thanks for looking at this, Akihiko. > > > > > > > > I understand this is a protection to the system to trap error use cases. > > > > The question I have is do we have any possible way to trigger these. > > > > > > > > I worry we add a bunch of code and notifiers, and then there's zero way > > > > to > > > > trigger, essentially add dead code. > > > > > > > > Logically we could already add assert() on things we don't expect to > > > > happen. This case might be slightly risky, but still I think we can > > > > also > > > > consider things like error_report_once() instead of introducing slightly > > > > complex notifiers just to cover what we think shouldn't happen. > > > > > > > > Or do you have way to trigger any of these notifiers? > > > > > > I simply followed what's already done for resize(), expecting resize() > > > does > > > the correct thing and following it won't introduce a regression. > > > > > > > > > > > PS: today I went back and I wanted to try how the existing resize() > > > > notifier would trigger, I can't even reproduce it with David's example > > > > here: > > > > > > > > https://lore.kernel.org/qemu-devel/[email protected]/#t > > > > > > > > I can trap a qemu_ram_resize(), but that's invoked with > > > > newsize==rb->size, > > > > so it didn't really notify a thing. I don't really know how to trigger > > > > ram_block_notify_resize(). If you know, please share. > > > I made an LLM amend the reproducer. Below is its output. > > > > > > Regards, > > > Akihiko Odaki > > > > > > LLM output: > > > > > > A synthetic but effective variant is to add custom ACPI filler tables so > > > the > > > initial `etc/acpi/tables` blob is just under the 128 KiB alignment bucket, > > > then let the normal boot-time fw_cfg ACPI rebuild push it over. > > > > > > I tested this shape: > > > > > > ```sh > > > truncate -s 65000 /tmp/fill1 > > > truncate -s 50600 /tmp/fill2 > > > ``` > > > > > > Then add to the original-ish command: > > > > > > ```sh > > > -device pcie-root-port,id=rp0,chassis=1,slot=1 \ > > > -acpitable sig=FI1A,data=/tmp/fill1 \ > > > -acpitable sig=FI2A,data=/tmp/fill2 > > > ``` > > > > These lines should inject some sections into ACPI, but I don't see why the > > acpi table would change: that should be appended right at QEMU boots, so I > > expect the ACPI table to grow indeed comparing to when without these lines, > > but not resize during VM running. I wonder if below is hallucinations from > > the AI. > > The resize happens because the ACPI fw_cfg blobs are built lazily when the > guest firmware selects them. acpi_add_rom_blob() registers > acpi_build_update() as the fw_cfg select callback; after `cont`, firmware > reads the fw_cfg ACPI entries, QEMU builds the tables, and > acpi_ram_update() calls memory_region_ram_resize(). > > Below is the reprouction case (LLM-generated): > > #!/bin/sh > set -eu > > QEMU=${QEMU:-build/qemu-system-x86_64} > tmp=$(mktemp -d) > trap 'rm -rf "$tmp"' EXIT > > qmp_migrate() > { > printf '%s%s%s\n' \ > '{"execute":"migrate","arguments":{"channels":[{' \ > '"channel-type":"main","addr":{"transport":"exec",' \ > '"args":["/bin/sleep","1000"]}}]}}' > } > > truncate -s 65000 "$tmp/fill1" > truncate -s 50600 "$tmp/fill2" > truncate -s 256M "$tmp/nvdimm" > > { > echo '{"execute":"qmp_capabilities"}' > echo '{"execute":"x-query-ramblock"}' > qmp_migrate > sleep 1 > echo '{"execute":"query-migrate"}' > echo '{"execute":"cont"}' > sleep 3 > echo '{"execute":"query-migrate"}' > echo '{"execute":"x-query-ramblock"}' > echo '{"execute":"quit"}' > } | "$QEMU" \ > -S \ > -machine q35,nvdimm=on,accel=tcg \ > -smp 1 \ > -cpu max \ > -m size=20G,slots=8,maxmem=22G \ > -object \ > memory-backend-file,id=mem0,mem-path="$tmp/nvdimm",size=256M \ > -device nvdimm,label-size=131072,memdev=mem0,id=nvdimm0,slot=1 \ > -nodefaults \ > -qmp stdio \ > -serial none \ > -device vmgenid \ > -device intel-iommu \ > -acpitable sig=FI1A,data="$tmp/fill1" \ > -acpitable sig=FI2A,data="$tmp/fill2" \ > -display none > > Expected markers in the output: > > /rom@etc/acpi/tables ... Used 0x0000000000020000 > "status": "active" > "status": "cancelling", "error-desc": "RAM block '/rom@etc/acpi/tables' > resized during precopy." > /rom@etc/acpi/tables ... Used 0x0000000000040000
Yes, this script did trigger this. I didn't check why -acpitable is special, but still, it isn't a real-life use case to me, and after "cont" it won't change. It's just still too special so far so less of a concern to me. The other thing is, it also didn't further prove there's any possible update of e.g. migratable flag or idstr that would justify the new notifiers are not dead code.. On the ACPI code alone, I kept thinking we shouldn't use resize() callback on its own; we already have vmstate_fw_cfg_acpi_mr, I think we could have marked all three regions non-migratable then migrate them in the same VMSD.. It saves all these complexities on thinking about what could happen. But the same applies here, if there's no real-life issue with it, we don't need to bother either.. Thanks, -- Peter Xu
