From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 68/71] replay: Constify VMState
Date: Sat, 30 Dec 2023 08:23:43 +1100 [thread overview]
Message-ID: <20231229212346.147149-69-richard.henderson@linaro.org> (raw)
In-Reply-To: <20231229212346.147149-1-richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231221031652.119827-69-richard.henderson@linaro.org>
---
replay/replay-snapshot.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/replay/replay-snapshot.c b/replay/replay-snapshot.c
index 10a7cf7992..e5e39161e3 100644
--- a/replay/replay-snapshot.c
+++ b/replay/replay-snapshot.c
@@ -51,7 +51,7 @@ static const VMStateDescription vmstate_replay = {
.minimum_version_id = 2,
.pre_save = replay_pre_save,
.post_load = replay_post_load,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_INT64_ARRAY(cached_clock, ReplayState, REPLAY_CLOCK_COUNT),
VMSTATE_UINT64(current_icount, ReplayState),
VMSTATE_INT32(instruction_count, ReplayState),
--
2.34.1
next prev parent reply other threads:[~2023-12-29 21:31 UTC|newest]
Thread overview: 73+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-29 21:22 [PULL 00/71] Constify VMState Richard Henderson
2023-12-29 21:22 ` [PULL 01/71] migration: Make VMStateDescription.subsections const Richard Henderson
2023-12-29 21:22 ` [PULL 02/71] target/arm: Constify VMState in machine.c Richard Henderson
2023-12-29 21:22 ` [PULL 03/71] target/arm: Constify hvf/hvf.c Richard Henderson
2023-12-29 21:22 ` [PULL 04/71] target/alpha: Constify VMState in machine.c Richard Henderson
2023-12-29 21:22 ` [PULL 05/71] target/avr: " Richard Henderson
2023-12-29 21:22 ` [PULL 06/71] target/cris: " Richard Henderson
2023-12-29 21:22 ` [PULL 07/71] target/hppa: " Richard Henderson
2023-12-29 21:22 ` [PULL 08/71] target/i386: " Richard Henderson
2023-12-29 21:22 ` [PULL 09/71] target/loongarch: " Richard Henderson
2023-12-29 21:22 ` [PULL 10/71] target/m68k: " Richard Henderson
2023-12-29 21:22 ` [PULL 11/71] target/microblaze: " Richard Henderson
2023-12-29 21:22 ` [PULL 12/71] target/mips: " Richard Henderson
2023-12-29 21:22 ` [PULL 13/71] target/openrisc: " Richard Henderson
2023-12-29 21:22 ` [PULL 14/71] target/ppc: " Richard Henderson
2023-12-29 21:22 ` [PULL 15/71] target/riscv: " Richard Henderson
2023-12-29 21:22 ` [PULL 16/71] target/s390x: " Richard Henderson
2023-12-29 21:22 ` [PULL 17/71] target/sparc: " Richard Henderson
2023-12-29 21:22 ` [PULL 18/71] hw/arm: Constify VMState Richard Henderson
2023-12-29 21:22 ` [PULL 19/71] hw/core: " Richard Henderson
2023-12-29 21:22 ` [PULL 20/71] hw/9pfs: " Richard Henderson
2023-12-29 21:22 ` [PULL 21/71] hw/acpi: " Richard Henderson
2023-12-29 21:22 ` [PULL 22/71] hw/adc: " Richard Henderson
2023-12-29 21:22 ` [PULL 23/71] hw/audio: " Richard Henderson
2023-12-29 21:22 ` [PULL 24/71] hw/block: " Richard Henderson
2023-12-29 21:23 ` [PULL 25/71] hw/char: " Richard Henderson
2023-12-29 21:23 ` [PULL 26/71] hw/display: " Richard Henderson
2023-12-29 21:23 ` [PULL 27/71] hw/dma: " Richard Henderson
2023-12-29 21:23 ` [PULL 28/71] hw/gpio: " Richard Henderson
2023-12-29 21:23 ` [PULL 29/71] hw/hyperv: " Richard Henderson
2023-12-29 21:23 ` [PULL 30/71] hw/i2c: " Richard Henderson
2023-12-29 21:23 ` [PULL 31/71] hw/i386: " Richard Henderson
2023-12-29 21:23 ` [PULL 32/71] hw/ide: " Richard Henderson
2023-12-29 21:23 ` [PULL 33/71] hw/input: " Richard Henderson
2023-12-29 21:23 ` [PULL 34/71] hw/intc: " Richard Henderson
2023-12-29 21:23 ` [PULL 35/71] hw/ipack: " Richard Henderson
2023-12-29 21:23 ` [PULL 36/71] hw/ipmi: " Richard Henderson
2023-12-29 21:23 ` [PULL 37/71] hw/isa: " Richard Henderson
2023-12-29 21:23 ` [PULL 38/71] hw/loongarch: " Richard Henderson
2023-12-29 21:23 ` [PULL 39/71] hw/m68k: " Richard Henderson
2023-12-29 21:23 ` [PULL 40/71] hw/misc: " Richard Henderson
2023-12-29 21:23 ` [PULL 41/71] hw/net: " Richard Henderson
2023-12-29 21:23 ` [PULL 42/71] hw/nvram: " Richard Henderson
2023-12-29 21:23 ` [PULL 43/71] hw/openrisc: " Richard Henderson
2023-12-29 21:23 ` [PULL 44/71] hw/pci: " Richard Henderson
2023-12-29 21:23 ` [PULL 45/71] hw/pci-bridge: " Richard Henderson
2023-12-29 21:23 ` [PULL 46/71] hw/pci-host: " Richard Henderson
2023-12-29 21:23 ` [PULL 47/71] hw/ppc: " Richard Henderson
2023-12-29 21:23 ` [PULL 48/71] hw/riscv: " Richard Henderson
2023-12-29 21:23 ` [PULL 49/71] hw/rtc: " Richard Henderson
2023-12-29 21:23 ` [PULL 50/71] hw/s390x: " Richard Henderson
2023-12-29 21:23 ` [PULL 51/71] hw/scsi: " Richard Henderson
2023-12-29 21:23 ` [PULL 52/71] hw/sd: " Richard Henderson
2023-12-29 21:23 ` [PULL 53/71] hw/sensor: " Richard Henderson
2023-12-29 21:23 ` [PULL 54/71] hw/sparc: " Richard Henderson
2023-12-29 21:23 ` [PULL 55/71] hw/ssi: " Richard Henderson
2023-12-29 21:23 ` [PULL 56/71] hw/timer: " Richard Henderson
2023-12-29 21:23 ` [PULL 57/71] hw/tpm: " Richard Henderson
2023-12-29 21:23 ` [PULL 58/71] hw/usb: " Richard Henderson
2023-12-29 21:23 ` [PULL 59/71] hw/vfio: " Richard Henderson
2023-12-29 21:23 ` [PULL 60/71] hw/virtio: " Richard Henderson
2023-12-29 21:23 ` [PULL 61/71] hw/watchdog: " Richard Henderson
2023-12-29 21:23 ` [PULL 62/71] hw/misc/macio: " Richard Henderson
2023-12-29 21:23 ` [PULL 63/71] audio: " Richard Henderson
2023-12-29 21:23 ` [PULL 64/71] backends: " Richard Henderson
2023-12-29 21:23 ` [PULL 65/71] cpu-target: " Richard Henderson
2023-12-29 21:23 ` [PULL 66/71] migration: " Richard Henderson
2023-12-29 21:23 ` [PULL 67/71] system: " Richard Henderson
2023-12-29 21:23 ` Richard Henderson [this message]
2023-12-29 21:23 ` [PULL 69/71] util/fifo8: " Richard Henderson
2023-12-29 21:23 ` [PULL 70/71] tests/unit/test-vmstate: " Richard Henderson
2023-12-29 21:23 ` [PULL 71/71] docs: Constify VMstate in examples Richard Henderson
2024-01-04 19:54 ` [PULL 00/71] Constify VMState Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20231229212346.147149-69-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).