net: netmap: Fix compilation issue
Reorganization of struct NetClientOptions (commit e4ba22b) caused a compilation failure of the netmap backend. This patch fixes the issue by properly accessing the union field. Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Vincenzo Maffione <v.maffione@gmail.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
ba63ec8594
commit
54c59b4de5
@ -439,7 +439,7 @@ int net_init_netmap(const NetClientOptions *opts,
|
|||||||
const char *name, NetClientState *peer, Error **errp)
|
const char *name, NetClientState *peer, Error **errp)
|
||||||
{
|
{
|
||||||
/* FIXME error_setg(errp, ...) on failure */
|
/* FIXME error_setg(errp, ...) on failure */
|
||||||
const NetdevNetmapOptions *netmap_opts = opts->netmap;
|
const NetdevNetmapOptions *netmap_opts = opts->u.netmap;
|
||||||
NetClientState *nc;
|
NetClientState *nc;
|
||||||
NetmapPriv me;
|
NetmapPriv me;
|
||||||
NetmapState *s;
|
NetmapState *s;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user