diff mbox

[v2,1/2] net: netmap: Fix compilation issue

Message ID 985232a08cfca768f8ace053ab44027a64bcfec6.1446822384.git.v.maffione@gmail.com
State New
Headers show

Commit Message

Vincenzo Maffione Nov. 6, 2015, 3:13 p.m. UTC
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.

Signed-off-by: Vincenzo Maffione <v.maffione@gmail.com>
---
 net/netmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Eric Blake Nov. 6, 2015, 3:30 p.m. UTC | #1
On 11/06/2015 08:13 AM, Vincenzo Maffione wrote:
> 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.

Technically, it was 8d0bcba that missed converting net/netmap.c
alongside all the other net/*, but e4ba22b that turned it into a compile
error. But no need to respin for that; the commit message is good enough.

Reviewed-by: Eric Blake <eblake@redhat.com>
diff mbox

Patch

diff --git a/net/netmap.c b/net/netmap.c
index 508b829..4197a9c 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;