qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: kraxel@redhat.com, lcapitulino@redhat.com
Subject: [Qemu-devel] [PATCH 9/9] balloon: Eliminate silly QERR_ macros
Date: Tue, 13 Jan 2015 18:50:32 +0100	[thread overview]
Message-ID: <1421171432-8733-10-git-send-email-armbru@redhat.com> (raw)
In-Reply-To: <1421171432-8733-1-git-send-email-armbru@redhat.com>

The QERR_ macros are leftovers from the days of "rich" error objects.
They're used with error_set() and qerror_report(), and expand into the
first *two* arguments.  This trickiness has become pointless.  Clean
up.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 balloon.c                 | 6 ++++--
 include/qapi/qmp/qerror.h | 6 ------
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/balloon.c b/balloon.c
index aa30617..dcf5b9c 100644
--- a/balloon.c
+++ b/balloon.c
@@ -39,11 +39,13 @@ static void *balloon_opaque;
 static int have_ballon(Error **errp)
 {
     if (kvm_enabled() && !kvm_has_sync_mmu()) {
-        error_set(errp, QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon");
+        error_set(errp, ERROR_CLASS_KVM_MISSING_CAP,
+                  "Using KVM without synchronous MMU, balloon unavailable");
         return 0;
     }
     if (!balloon_event_fn) {
-        error_set(errp, QERR_DEVICE_NOT_ACTIVE, "balloon");
+        error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE,
+                  "No balloon device has been activated");
         return 0;
     }
     return 1;
diff --git a/include/qapi/qmp/qerror.h b/include/qapi/qmp/qerror.h
index 28f980e..eeaf0cb 100644
--- a/include/qapi/qmp/qerror.h
+++ b/include/qapi/qmp/qerror.h
@@ -70,9 +70,6 @@ void qerror_report_err(Error *err);
 #define QERR_DEVICE_NO_HOTPLUG \
     ERROR_CLASS_GENERIC_ERROR, "Device '%s' does not support hotplugging"
 
-#define QERR_DEVICE_NOT_ACTIVE \
-    ERROR_CLASS_DEVICE_NOT_ACTIVE, "No %s device has been activated"
-
 #define QERR_DEVICE_NOT_ENCRYPTED \
     ERROR_CLASS_GENERIC_ERROR, "Device '%s' is not encrypted"
 
@@ -109,9 +106,6 @@ void qerror_report_err(Error *err);
 #define QERR_JSON_PARSING \
     ERROR_CLASS_GENERIC_ERROR, "Invalid JSON syntax"
 
-#define QERR_KVM_MISSING_CAP \
-    ERROR_CLASS_KVM_MISSING_CAP, "Using KVM without %s, %s unavailable"
-
 #define QERR_MIGRATION_ACTIVE \
     ERROR_CLASS_GENERIC_ERROR, "There's a migration process in progress"
 
-- 
1.9.3

  parent reply	other threads:[~2015-01-13 17:50 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-13 17:50 [Qemu-devel] [PATCH 0/9] qmp hmp balloon: Cleanups around error reporting Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 1/9] qmp hmp: Factor out common "using spice" test Markus Armbruster
2015-01-14 13:10   ` Eric Blake
2015-01-14 13:53     ` Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 2/9] qmp hmp: Improve error messages when SPICE is not in use Markus Armbruster
2015-01-14 13:16   ` Eric Blake
2015-01-14 13:51     ` Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 3/9] hmp: Compile hmp_info_spice() only with CONFIG_SPICE Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 4/9] qmp: Clean up qmp_query_spice() #ifndef !CONFIG_SPICE dummy Markus Armbruster
2015-01-14 13:26   ` Eric Blake
2015-01-13 17:50 ` [Qemu-devel] [PATCH 5/9] qmp: Simplify recognition of capability negotiation command Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 6/9] qmp: Eliminate silly QERR_COMMAND_NOT_FOUND macro Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 7/9] balloon: Inline qemu_balloon(), qemu_balloon_status() Markus Armbruster
2015-01-13 17:50 ` [Qemu-devel] [PATCH 8/9] balloon: Factor out common "is balloon active" test Markus Armbruster
2015-01-14 13:29   ` Eric Blake
2015-01-14 14:34     ` Markus Armbruster
2015-02-10 18:39   ` Dr. David Alan Gilbert
2015-02-10 22:42     ` Eric Blake
2015-02-11 12:12       ` Markus Armbruster
2015-01-13 17:50 ` Markus Armbruster [this message]
2015-01-14 13:31   ` [Qemu-devel] [PATCH 9/9] balloon: Eliminate silly QERR_ macros Eric Blake
2015-01-14  7:23 ` [Qemu-devel] [PATCH 0/9] qmp hmp balloon: Cleanups around error reporting Gerd Hoffmann

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=1421171432-8733-10-git-send-email-armbru@redhat.com \
    --to=armbru@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=lcapitulino@redhat.com \
    --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).