qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] exec: Remove the duplicated check in parse_cpu_option()
@ 2019-12-06  6:33 Gavin Shan
  2019-12-06 16:58 ` Greg Kurz
  0 siblings, 1 reply; 5+ messages in thread
From: Gavin Shan @ 2019-12-06  6:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: gshan

The @cpu_option shouldn't be NULL, otherwise assertion from g_strsplit()
should be raised as below message indicates. So it's meaningless to validate
@model_pices[0] in parse_cpu_option() as it shouldn't be NULL either.

   qemu-system-aarch64: GLib: g_strsplit: assertion 'string != NULL' failed

This just removes the check and unused message.

Signed-off-by: Gavin Shan <gshan@redhat.com>
---
 exec.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/exec.c b/exec.c
index ffdb518535..3cff459e43 100644
--- a/exec.c
+++ b/exec.c
@@ -963,11 +963,6 @@ const char *parse_cpu_option(const char *cpu_option)
     const char *cpu_type;
 
     model_pieces = g_strsplit(cpu_option, ",", 2);
-    if (!model_pieces[0]) {
-        error_report("-cpu option cannot be empty");
-        exit(1);
-    }
-
     oc = cpu_class_by_name(CPU_RESOLVING_TYPE, model_pieces[0]);
     if (oc == NULL) {
         error_report("unable to find CPU model '%s'", model_pieces[0]);
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-12-08 21:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-06  6:33 [PATCH] exec: Remove the duplicated check in parse_cpu_option() Gavin Shan
2019-12-06 16:58 ` Greg Kurz
2019-12-07 12:56   ` Gavin Shan
2019-12-07 16:51     ` Greg Kurz
2019-12-08 21:45       ` Gavin Shan

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).