diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-04-18 17:34:15 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-06-04 13:49:35 -0300 |
commit | 928059a37b8e1f152962431fb846f39597b63c36 (patch) | |
tree | 4cd8ab47ebd78c1756406e1dde5075609beb301c /qmp-commands.hx | |
parent | 4559a1dbcc15a10482de822e2839645a1819ef6f (diff) | |
download | qemu-928059a37b8e1f152962431fb846f39597b63c36.tar.gz qemu-928059a37b8e1f152962431fb846f39597b63c36.tar.bz2 qemu-928059a37b8e1f152962431fb846f39597b63c36.zip |
qapi: convert netdev_add
This is not a full QAPI conversion, but an intermediate step.
In essence, do_netdev_add() is split into three functions:
1. netdev_add(): performs the actual work. This function is fully
converted to Error (thus, it's "qapi-friendly")
2. qmp_netdev_add(): the QMP front-end for netdev_add(). This is
coded by hand and not auto-generated (gen=no in the schema). The
reason for this it's a lot easier and simpler to with QemuOpts
this way
3. hmp_netdev_add(): HMP front-end.
This design was suggested by Paolo Bonzini.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-By: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index 2aa64add35..f6550cb9bd 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -642,10 +642,7 @@ EQMP { .name = "netdev_add", .args_type = "netdev:O", - .params = "[user|tap|socket],id=str[,prop=value][,...]", - .help = "add host network device", - .user_print = monitor_user_noop, - .mhandler.cmd_new = do_netdev_add, + .mhandler.cmd_new = qmp_netdev_add, }, SQMP |