qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Thomas Huth <thuth@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>
Subject: [Qemu-devel] [PULL 3/9] usb: Deprecate HMP commands usb_add and usb_del
Date: Mon, 29 May 2017 15:09:50 +0200	[thread overview]
Message-ID: <20170529130956.20297-4-kraxel@redhat.com> (raw)
In-Reply-To: <20170529130956.20297-1-kraxel@redhat.com>

From: Thomas Huth <thuth@redhat.com>

The commands 'device_add' and 'device_del' should be used
nowadays instead.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-id: 1495175803-12830-1-git-send-email-thuth@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 vl.c            | 6 ++++++
 hmp-commands.hx | 6 ++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/vl.c b/vl.c
index 88d24d6b12..92d1310b99 100644
--- a/vl.c
+++ b/vl.c
@@ -1436,6 +1436,9 @@ static int usb_parse(const char *cmdline)
 void hmp_usb_add(Monitor *mon, const QDict *qdict)
 {
     const char *devname = qdict_get_str(qdict, "devname");
+
+    error_report("usb_add is deprecated, please use device_add instead");
+
     if (usb_device_add(devname) < 0) {
         error_report("could not add USB device '%s'", devname);
     }
@@ -1444,6 +1447,9 @@ void hmp_usb_add(Monitor *mon, const QDict *qdict)
 void hmp_usb_del(Monitor *mon, const QDict *qdict)
 {
     const char *devname = qdict_get_str(qdict, "devname");
+
+    error_report("usb_del is deprecated, please use device_del instead");
+
     if (usb_device_del(devname) < 0) {
         error_report("could not delete USB device '%s'", devname);
     }
diff --git a/hmp-commands.hx b/hmp-commands.hx
index baeac47a72..e763606fe5 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -676,7 +676,8 @@ ETEXI
 STEXI
 @item usb_add @var{devname}
 @findex usb_add
-Add the USB device @var{devname}.  For details of available devices see
+Add the USB device @var{devname}. This command is deprecated, please
+use @code{device_add} instead. For details of available devices see
 @ref{usb_devices}
 ETEXI
 
@@ -693,7 +694,8 @@ STEXI
 @findex usb_del
 Remove the USB device @var{devname} from the QEMU virtual USB
 hub. @var{devname} has the syntax @code{bus.addr}. Use the monitor
-command @code{info usb} to see the devices you can remove.
+command @code{info usb} to see the devices you can remove. This
+command is deprecated, please use @code{device_del} instead.
 ETEXI
 
     {
-- 
2.9.3

  parent reply	other threads:[~2017-05-29 13:10 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-29 13:09 [Qemu-devel] [PULL 0/9] usb patch queue Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 1/9] ehci: fix overflow in frame timer code Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 2/9] usb: Deprecate the legacy -usbdevice option Gerd Hoffmann
2017-05-29 13:09 ` Gerd Hoffmann [this message]
2017-05-29 13:09 ` [Qemu-devel] [PULL 4/9] usb: Simplify the parameter parsing of the legacy usb serial device Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 5/9] xhci: split into multiple files Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 6/9] xhci: add CONFIG_USB_XHCI_NEC option Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 7/9] usb-hub: set PORT_STAT_C_SUSPEND on host-initiated wake-up Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 8/9] usb: don't wakeup during coldplug Gerd Hoffmann
2017-05-29 13:09 ` [Qemu-devel] [PULL 9/9] ehci: fix frame timer invocation Gerd Hoffmann
2017-05-30  9:43 ` [Qemu-devel] [PULL 0/9] usb patch queue Stefan Hajnoczi

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=20170529130956.20297-4-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=thuth@redhat.com \
    /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).