mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
Revert "qapi: net: Add query-netdev command"
Several issues has been reported for query-netdev series. Consider
it's late in the rc, this reverts commit
d32ad10a14
.
Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
22317309df
commit
f9bb0c1f98
12 changed files with 9 additions and 477 deletions
|
@ -311,15 +311,14 @@ static void net_vhost_user_event(void *opaque, QEMUChrEvent event)
|
|||
}
|
||||
|
||||
static int net_vhost_user_init(NetClientState *peer, const char *device,
|
||||
const char *name, const char *chardev,
|
||||
Chardev *chr, int queues)
|
||||
const char *name, Chardev *chr,
|
||||
int queues)
|
||||
{
|
||||
Error *err = NULL;
|
||||
NetClientState *nc, *nc0 = NULL;
|
||||
NetVhostUserState *s = NULL;
|
||||
VhostUserState *user;
|
||||
int i;
|
||||
NetdevVhostUserOptions *stored;
|
||||
|
||||
assert(name);
|
||||
assert(queues > 0);
|
||||
|
@ -356,16 +355,6 @@ static int net_vhost_user_init(NetClientState *peer, const char *device,
|
|||
|
||||
assert(s->vhost_net);
|
||||
|
||||
/* Store startup parameters */
|
||||
nc0->stored_config = g_new0(NetdevInfo, 1);
|
||||
nc0->stored_config->type = NET_BACKEND_VHOST_USER;
|
||||
stored = &nc0->stored_config->u.vhost_user;
|
||||
|
||||
stored->chardev = g_strdup(chardev);
|
||||
|
||||
stored->has_queues = true;
|
||||
stored->queues = queues;
|
||||
|
||||
return 0;
|
||||
|
||||
err:
|
||||
|
@ -457,6 +446,5 @@ int net_init_vhost_user(const Netdev *netdev, const char *name,
|
|||
return -1;
|
||||
}
|
||||
|
||||
return net_vhost_user_init(peer, "vhost_user", name,
|
||||
vhost_user_opts->chardev, chr, queues);
|
||||
return net_vhost_user_init(peer, "vhost_user", name, chr, queues);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue