From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NteFt-0006cK-0a for qemu-devel@nongnu.org; Mon, 22 Mar 2010 05:49:05 -0400 Received: from [199.232.76.173] (port=57955 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NteFr-0006bM-NJ for qemu-devel@nongnu.org; Mon, 22 Mar 2010 05:49:03 -0400 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NteFp-0007SP-Th for qemu-devel@nongnu.org; Mon, 22 Mar 2010 05:49:03 -0400 Received: from oxygen.pond.sub.org ([213.239.205.148]:54258) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NteFn-0007Rl-6q for qemu-devel@nongnu.org; Mon, 22 Mar 2010 05:49:00 -0400 Received: from blackfin.pond.sub.org (pD951ABC6.dip.t-dialin.net [217.81.171.198]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 5EA63276DAB for ; Mon, 22 Mar 2010 10:48:54 +0100 (CET) From: Markus Armbruster Date: Mon, 22 Mar 2010 10:48:48 +0100 Message-Id: <1269251333-20821-7-git-send-email-armbru@redhat.com> In-Reply-To: <1269251333-20821-1-git-send-email-armbru@redhat.com> References: <1269251333-20821-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH v2 06/11] error: Drop extra messages after qemu_opts_set() and qemu_opts_parse() List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: lcapitulino@redhat.com Both functions report errors nicely enough now, no need for additional messages. Signed-off-by: Markus Armbruster --- hw/pci-hotplug.c | 2 -- net.c | 2 -- qemu-config.c | 1 - vl.c | 5 ----- 4 files changed, 0 insertions(+), 10 deletions(-) diff --git a/hw/pci-hotplug.c b/hw/pci-hotplug.c index eb3701b..343fd17 100644 --- a/hw/pci-hotplug.c +++ b/hw/pci-hotplug.c @@ -56,8 +56,6 @@ static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon, opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", 0); if (!opts) { - monitor_printf(mon, "parsing network options '%s' failed\n", - opts_str ? opts_str : ""); return NULL; } diff --git a/net.c b/net.c index 1092bdc..9338f35 100644 --- a/net.c +++ b/net.c @@ -1161,8 +1161,6 @@ void net_host_device_add(Monitor *mon, const QDict *qdict) opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", 0); if (!opts) { - monitor_printf(mon, "parsing network options '%s' failed\n", - opts_str ? opts_str : ""); return; } diff --git a/qemu-config.c b/qemu-config.c index 150157c..d4a2f43 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -472,7 +472,6 @@ int qemu_config_parse(FILE *fp, const char *fname) goto out; } if (qemu_opt_set(opts, arg, value) != 0) { - error_report("failed to set \"%s\" for %s", arg, group); goto out; } continue; diff --git a/vl.c b/vl.c index d69250c..35ab34f 100644 --- a/vl.c +++ b/vl.c @@ -766,8 +766,6 @@ QemuOpts *drive_add(const char *file, const char *fmt, ...) opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0); if (!opts) { - fprintf(stderr, "%s: huh? duplicate? (%s)\n", - __FUNCTION__, optstr); return NULL; } if (file) @@ -4244,7 +4242,6 @@ int main(int argc, char **argv, char **envp) case QEMU_OPTION_mon: opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1); if (!opts) { - fprintf(stderr, "parse error: %s\n", optarg); exit(1); } default_monitor = 0; @@ -4252,7 +4249,6 @@ int main(int argc, char **argv, char **envp) case QEMU_OPTION_chardev: opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1); if (!opts) { - fprintf(stderr, "parse error: %s\n", optarg); exit(1); } break; @@ -4464,7 +4460,6 @@ int main(int argc, char **argv, char **envp) case QEMU_OPTION_rtc: opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0); if (!opts) { - fprintf(stderr, "parse error: %s\n", optarg); exit(1); } configure_rtc(opts); -- 1.6.6.1