Skip to content

Commit

Permalink
convert net_init_vde() to NetClientOptions
Browse files Browse the repository at this point in the history
v1->v2:
- NetdevVdeOptions::port and ::mode are of type uint16. Remove superfluous
  range checks.

Signed-off-by: Laszlo Ersek <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
  • Loading branch information
lersek authored and Stefan Hajnoczi committed Jul 23, 2012
1 parent bef8e8f commit 4a917c3
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions net/vde.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,20 +110,17 @@ static int net_vde_init(VLANState *vlan, const char *model,
return 0;
}

int net_init_vde(QemuOpts *opts, const NetClientOptions *new_opts,
int net_init_vde(QemuOpts *old_opts, const NetClientOptions *opts,
const char *name, VLANState *vlan)
{
const char *sock;
const char *group;
int port, mode;
const NetdevVdeOptions *vde;

sock = qemu_opt_get(opts, "sock");
group = qemu_opt_get(opts, "group");
assert(opts->kind == NET_CLIENT_OPTIONS_KIND_VDE);
vde = opts->vde;

port = qemu_opt_get_number(opts, "port", 0);
mode = qemu_opt_get_number(opts, "mode", 0700);

if (net_vde_init(vlan, "vde", name, sock, port, group, mode) == -1) {
/* missing optional values have been initialized to "all bits zero" */
if (net_vde_init(vlan, "vde", name, vde->sock, vde->port, vde->group,
vde->has_mode ? vde->mode : 0700) == -1) {
return -1;
}

Expand Down

0 comments on commit 4a917c3

Please sign in to comment.