aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2015-11-10 10:47:21 +0100
committerJason Wang <jasowang@redhat.com>2015-11-12 15:30:47 +0800
commit54c59b4de584b3467166febb4ff84627a2f29a0e (patch)
tree7097cfd6fb33166d52345a366239e0f23e3f4404 /net
parentba63ec8594a5dd412182aced07b4bf042403766a (diff)
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>
Diffstat (limited to 'net')
-rw-r--r--net/netmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netmap.c b/net/netmap.c
index 508b82947d..4197a9c9ba 100644
--- a/net/netmap.c
+++ b/net/netmap.c
@@ -439,7 +439,7 @@ int net_init_netmap(const NetClientOptions *opts,
const char *name, NetClientState *peer, Error **errp)
{
/* FIXME error_setg(errp, ...) on failure */
- const NetdevNetmapOptions *netmap_opts = opts->netmap;
+ const NetdevNetmapOptions *netmap_opts = opts->u.netmap;
NetClientState *nc;
NetmapPriv me;
NetmapState *s;