diff options
| author | Mark McLoughlin <markmc@redhat.com> | 2009-10-08 19:58:19 +0100 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-15 09:32:00 -0500 |
| commit | 8b077c9f975c04dadaa2bb911567997afdfb6bd6 (patch) | |
| tree | 017f26baed95c811ffa07e5d6fcbbc0d7fa6cadb /net.c | |
| parent | 98449371228d7636caa6a1dfbd681be827048eda (diff) | |
| download | focaccia-qemu-8b077c9f975c04dadaa2bb911567997afdfb6bd6.tar.gz focaccia-qemu-8b077c9f975c04dadaa2bb911567997afdfb6bd6.zip | |
net: pass monitor handle to client init functions
Needed for e.g. looking up a file descriptor name using monitor_get_fd() in net_init_tap() Patchworks-ID: 35509 Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'net.c')
| -rw-r--r-- | net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net.c b/net.c index e93017d3e8..898b9afaa0 100644 --- a/net.c +++ b/net.c @@ -3021,7 +3021,7 @@ int net_client_init(Monitor *mon, QemuOpts *opts) } if (net_client_types[i].init) { - return net_client_types[i].init(opts, NULL); + return net_client_types[i].init(opts, mon); } else { return 0; } |