All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Vivier <laurent@vivier.eu>
To: qemu-devel@nongnu.org
Cc: "Alistair Francis" <alistair.francis@wdc.com>,
	"Richard Henderson" <richard.henderson@linaro.org>,
	"Riku Voipio" <riku.voipio@iki.fi>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Laurent Vivier" <laurent@vivier.eu>
Subject: [PULL v2 13/19] target/riscv/cpu: Restrict CPU migration to system-mode
Date: Sat,  6 Jun 2020 15:16:01 +0200	[thread overview]
Message-ID: <20200606131607.1250819-14-laurent@vivier.eu> (raw)
In-Reply-To: <20200606131607.1250819-1-laurent@vivier.eu>

From: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Tested-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200522172510.25784-8-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
 target/riscv/cpu.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
index 059d71f2c715..6c78337858ad 100644
--- a/target/riscv/cpu.c
+++ b/target/riscv/cpu.c
@@ -485,10 +485,12 @@ static void riscv_cpu_init(Object *obj)
     cpu_set_cpustate_pointers(cpu);
 }
 
+#ifndef CONFIG_USER_ONLY
 static const VMStateDescription vmstate_riscv_cpu = {
     .name = "cpu",
     .unmigratable = 1,
 };
+#endif
 
 static Property riscv_cpu_properties[] = {
     DEFINE_PROP_BOOL("i", RISCVCPU, cfg.ext_i, true),
@@ -544,13 +546,13 @@ static void riscv_cpu_class_init(ObjectClass *c, void *data)
     cc->do_transaction_failed = riscv_cpu_do_transaction_failed;
     cc->do_unaligned_access = riscv_cpu_do_unaligned_access;
     cc->get_phys_page_debug = riscv_cpu_get_phys_page_debug;
+    /* For now, mark unmigratable: */
+    cc->vmsd = &vmstate_riscv_cpu;
 #endif
 #ifdef CONFIG_TCG
     cc->tcg_initialize = riscv_translate_init;
     cc->tlb_fill = riscv_cpu_tlb_fill;
 #endif
-    /* For now, mark unmigratable: */
-    cc->vmsd = &vmstate_riscv_cpu;
     device_class_set_props(dc, riscv_cpu_properties);
 }
 
-- 
2.26.2



  parent reply	other threads:[~2020-06-06 13:27 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-06 13:15 [PULL v2 00/19] Linux user for 5.1 patches Laurent Vivier
2020-06-06 13:15 ` [PULL v2 01/19] linux-user, alpha: fix oldumount syscall Laurent Vivier
2020-06-06 13:15 ` [PULL v2 02/19] linux-user: return target error codes for socket() and prctl() Laurent Vivier
2020-06-06 13:15 ` [PULL v2 03/19] linux-user: Add support for /proc/cpuinfo on hppa platform Laurent Vivier
2020-06-06 13:15 ` [PULL v2 04/19] linux-user/strace.list: fix epoll_create{, 1} -strace output Laurent Vivier
2020-06-06 13:15 ` [PULL v2 05/19] linux-user/mmap.c: fix integer underflow in target_mremap Laurent Vivier
2020-06-06 13:15 ` [PULL v2 06/19] linux-user: implement OFD locks Laurent Vivier
2020-06-06 13:15 ` [PULL v2 07/19] Makefile: Only build virtiofsd if system-mode is enabled Laurent Vivier
2020-06-06 13:15 ` [PULL v2 08/19] configure: Avoid building TCG when not needed Laurent Vivier
2020-06-06 13:15 ` [PULL v2 09/19] tests/Makefile: Only display TCG-related tests when TCG is available Laurent Vivier
2020-06-06 13:15 ` [PULL v2 10/19] tests/Makefile: Restrict some softmmu-only tests Laurent Vivier
2020-06-06 13:15 ` [PULL v2 11/19] util/Makefile: Reduce the user-mode object list Laurent Vivier
2020-06-06 13:16 ` [PULL v2 12/19] stubs/Makefile: " Laurent Vivier
2020-06-06 13:16 ` Laurent Vivier [this message]
2020-06-06 13:16 ` [PULL v2 14/19] exec: Assert CPU migration is not used on user-only build Laurent Vivier
2020-06-06 13:16 ` [PULL v2 15/19] arch_init: Remove unused 'qapi-commands-misc.h' include Laurent Vivier
2020-06-06 13:16 ` [PULL v2 16/19] target/i386: Restrict CpuClass::get_crash_info() to system-mode Laurent Vivier
2020-06-06 13:16 ` [PULL v2 17/19] target/s390x: " Laurent Vivier
2020-06-06 13:16 ` [PULL v2 18/19] hw/core: " Laurent Vivier
2020-06-06 13:16 ` [PULL v2 19/19] stubs: Restrict ui/win32-kbd-hook " Laurent Vivier
2020-06-08 12:31 ` [PULL v2 00/19] Linux user for 5.1 patches 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=20200606131607.1250819-14-laurent@vivier.eu \
    --to=laurent@vivier.eu \
    --cc=alistair.francis@wdc.com \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=riku.voipio@iki.fi \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.