summary refs log tree commit diff stats
path: root/docs/qmp-commands.txt
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 13:33:15 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:15:29 +0100
commitaa72941bccda04854f888ba50c4970a86db74b33 (patch)
treec03a064e7e6dc401f330088e2c2b6bf0be5d60d7 /docs/qmp-commands.txt
parentee332b5125e416600d0b47689d8050f479b38479 (diff)
downloadfocaccia-qemu-aa72941bccda04854f888ba50c4970a86db74b33.tar.gz
focaccia-qemu-aa72941bccda04854f888ba50c4970a86db74b33.zip
qmp-commands: move 'netdev_add' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs/qmp-commands.txt')
-rw-r--r--docs/qmp-commands.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index b19c36dba5..9d1a92abbf 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -205,28 +205,6 @@ Example:
 <- { "return": { "status": "active", "completed": 1024000,
                  "total": 2048000 } }
 
-netdev_add
-----------
-
-Add host network device.
-
-Arguments:
-
-- "type": the device type, "tap", "user", ... (json-string)
-- "id": the device's ID, must be unique (json-string)
-- device options
-
-Example:
-
--> { "execute": "netdev_add",
-     "arguments": { "type": "user", "id": "netdev1",
-                    "dnssearch": "example.org" } }
-<- { "return": {} }
-
-Note: The supported device options are the same ones supported by the '-netdev'
-      command-line argument, which are listed in the '-help' output or QEMU's
-      manual
-
 netdev_del
 ----------