From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=40728 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOZKd-0000Tq-B8 for qemu-devel@nongnu.org; Tue, 15 Jun 2010 12:49:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOZKS-0003UE-S0 for qemu-devel@nongnu.org; Tue, 15 Jun 2010 12:49:38 -0400 Received: from mail-iw0-f173.google.com ([209.85.214.173]:45041) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOZKS-0003U7-Nw for qemu-devel@nongnu.org; Tue, 15 Jun 2010 12:49:36 -0400 Received: by iwn10 with SMTP id 10so5549377iwn.4 for ; Tue, 15 Jun 2010 09:49:36 -0700 (PDT) Message-ID: <4C17AF2B.8010605@codemonkey.ws> Date: Tue, 15 Jun 2010 11:49:47 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [CFR 9/10] device_del command References: <1276619430-15871-1-git-send-email-aliguori@us.ibm.com> <1276619430-15871-10-git-send-email-aliguori@us.ibm.com> In-Reply-To: <1276619430-15871-10-git-send-email-aliguori@us.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Luiz Capitulino , qemu-devel@nongnu.org, Stefan Hajnoczi , Markus Armbruster On 06/15/2010 11:30 AM, Anthony Liguori wrote: > device_del > ---------- > > Remove a device. > > Arguments: > > - "id": the device's ID (json-string) > How does one discover a device's ID? What are the failure conditions? Is the device removed from the guest immediately upon receiving the return? Regards, Anthony Liguori > Example: > > -> { "execute": "device_del", "arguments": { "id": "net1" } } > <- { "return": {} } > > >