> Currently we use memory_region_init_rom_nomigrate() to create > the "dp3893x-prom" memory region, and we don't manually register > it with vmstate_register_ram(). This currently means that its > contents are migrated but as a ram block whose name is the empty > string; in future it may mean they are not migrated at all. Use > memory_region_init_ram() instead. > > Note that this is a a cross-version migration compatibility break > for the MIPS "magnum" and "pica61" machines. >
As far as MIPS jazz ("magnum" and "pica61") boards are concerned: Reviewed-by: Aleksandar Markovic <aleksandar.marko...@wavecomp.com> > Signed-off-by: Peter Maydell <peter.mayd...@linaro.org> > --- > This is I think the last device that creates a RAM memory > region and never registers it for migration. Only used on > the MIPS 'jazz' boards. > > hw/net/dp8393x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)