From: Luiz Capitulino <lcapitulino@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] Re: [PATCH] monitor: convert do_device_del() to QObject, QError
Date: Thu, 18 Mar 2010 18:27:24 -0300 [thread overview]
Message-ID: <20100318182724.39d66247@redhat.com> (raw)
In-Reply-To: <1268844367-31961-1-git-send-email-armbru@redhat.com>
On Wed, 17 Mar 2010 17:46:07 +0100
Markus Armbruster <armbru@redhat.com> wrote:
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> hw/qdev.c | 7 ++++---
> hw/qdev.h | 2 +-
> qemu-monitor.hx | 3 ++-
> 3 files changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/hw/qdev.c b/hw/qdev.c
> index 17a46a7..35460eb 100644
> --- a/hw/qdev.c
> +++ b/hw/qdev.c
> @@ -800,15 +800,16 @@ int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data)
> return 0;
> }
>
> -void do_device_del(Monitor *mon, const QDict *qdict)
> +int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
> {
> const char *id = qdict_get_str(qdict, "id");
> DeviceState *dev;
>
> dev = qdev_find_recursive(main_system_bus, id);
> if (NULL == dev) {
> - error_report("Device '%s' not found", id);
> - return;
> + qerror_report(QERR_DEVICE_NOT_FOUND, id);
> + return -1;
> }
> qdev_unplug(dev);
This function can fail, otherwise looks good.
> + return 0;
> }
> diff --git a/hw/qdev.h b/hw/qdev.h
> index 9475705..40373c8 100644
> --- a/hw/qdev.h
> +++ b/hw/qdev.h
> @@ -176,7 +176,7 @@ void qbus_free(BusState *bus);
> void do_info_qtree(Monitor *mon);
> void do_info_qdm(Monitor *mon);
> int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data);
> -void do_device_del(Monitor *mon, const QDict *qdict);
> +int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
>
> /*** qdev-properties.c ***/
>
> diff --git a/qemu-monitor.hx b/qemu-monitor.hx
> index 5308f36..d290b4b 100644
> --- a/qemu-monitor.hx
> +++ b/qemu-monitor.hx
> @@ -589,7 +589,8 @@ ETEXI
> .args_type = "id:s",
> .params = "device",
> .help = "remove device",
> - .mhandler.cmd = do_device_del,
> + .user_print = monitor_user_noop,
> + .mhandler.cmd_new = do_device_del,
> },
>
> STEXI
next prev parent reply other threads:[~2010-03-18 21:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-17 16:46 [Qemu-devel] [PATCH] monitor: convert do_device_del() to QObject, QError Markus Armbruster
2010-03-18 21:27 ` Luiz Capitulino [this message]
2010-03-19 21:35 ` [Qemu-devel] " Markus Armbruster
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=20100318182724.39d66247@redhat.com \
--to=lcapitulino@redhat.com \
--cc=armbru@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).