From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60947) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dBdEV-00041P-1M for qemu-devel@nongnu.org; Fri, 19 May 2017 04:25:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dBdEU-0003Ef-0s for qemu-devel@nongnu.org; Fri, 19 May 2017 04:25:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38596) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dBdET-0003EL-KH for qemu-devel@nongnu.org; Fri, 19 May 2017 04:25:57 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7A2D8C056785 for ; Fri, 19 May 2017 08:25:56 +0000 (UTC) Date: Fri, 19 May 2017 09:25:51 +0100 From: "Dr. David Alan Gilbert" Message-ID: <20170519082550.GD2081@work-vm> References: <1495175803-12830-1-git-send-email-thuth@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1495175803-12830-1-git-send-email-thuth@redhat.com> Subject: Re: [Qemu-devel] [PATCH] usb: Deprecate HMP commands usb_add and usb_del List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thomas Huth Cc: qemu-devel@nongnu.org, Gerd Hoffmann , Paolo Bonzini * Thomas Huth (thuth@redhat.com) wrote: > The commands 'device_add' and 'device_del' should be used > nowadays instead. > > Signed-off-by: Thomas Huth Reviewed-by: Dr. David Alan Gilbert > --- > hmp-commands.hx | 6 ++++-- > vl.c | 6 ++++++ > 2 files changed, 10 insertions(+), 2 deletions(-) > > diff --git a/hmp-commands.hx b/hmp-commands.hx > index baeac47..e763606 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 > > { > diff --git a/vl.c b/vl.c > index 3ca6bd3..268a8d8 100644 > --- a/vl.c > +++ b/vl.c > @@ -1435,6 +1435,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); > } > @@ -1443,6 +1446,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); > } > -- > 1.8.3.1 > -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK