[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 04/18] hw/arm/armv7m: Mark the device with no migratable fiel
From: |
Peter Maydell |
Subject: |
Re: [PATCH 04/18] hw/arm/armv7m: Mark the device with no migratable fields |
Date: |
Thu, 9 Jul 2020 20:03:48 +0100 |
On Fri, 3 Jul 2020 at 21:19, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> This device doesn't have fields to migrate. Be explicit
> by using vmstate_qdev_no_state_to_migrate.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> hw/arm/armv7m.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/hw/arm/armv7m.c b/hw/arm/armv7m.c
> index 3308211e9c..3f78fccc12 100644
> --- a/hw/arm/armv7m.c
> +++ b/hw/arm/armv7m.c
> @@ -366,6 +366,7 @@ static void bitband_class_init(ObjectClass *klass, void
> *data)
> DeviceClass *dc = DEVICE_CLASS(klass);
>
> dc->realize = bitband_realize;
> + dc->vmsd = vmstate_qdev_no_state_to_migrate;
> device_class_set_props(dc, bitband_properties);
> }
The commit message implies that this is changing the
TYPE_ARMV7M device, but it's actually affecting TYPE_BITBAND.
Code change looks good.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
thanks
-- PMM
- [PATCH 00/18] hw: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 01/18] migration/vmstate: Document vmstate_dummy, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 02/18] migration/vmstate: Introduce vmstate_no_state_to_migrate, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 03/18] hw/core/qdev: Add vmstate_qdev_no_state_to_migrate, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 04/18] hw/arm/armv7m: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- Re: [PATCH 04/18] hw/arm/armv7m: Mark the device with no migratable fields,
Peter Maydell <=
- [PATCH 06/18] hw/arm/bcm283x: Mark devices with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 05/18] hw/arm/aspeed_soc: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 07/18] hw/arm/msf2-soc: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 08/18] hw/core/split-irq: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 09/18] hw/cpu/a9mpcore: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 10/18] hw/cpu/cluster: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 11/18] hw/usb/hcd-ohci: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 12/18] hw/intc/arm_gicv2m: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03
- [PATCH 15/18] hw/misc/unimp: Mark the device with no migratable fields, Philippe Mathieu-Daudé, 2020/07/03