mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
net: purge the monitor object from all init functions
The only backend that really uses it is the socket one, which calls monitor_get_fd(). But it can use 'cur_mon' instead. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Reviewed-By: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
60d5666f7d
commit
42dcc547e1
15 changed files with 27 additions and 43 deletions
|
@ -32,7 +32,7 @@
|
|||
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
|
||||
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
|
||||
|
||||
int net_init_tap(QemuOpts *opts, Monitor *mon, const char *name, VLANState *vlan);
|
||||
int net_init_tap(QemuOpts *opts, const char *name, VLANState *vlan);
|
||||
|
||||
int tap_open(char *ifname, int ifname_size, int *vnet_hdr, int vnet_hdr_required);
|
||||
|
||||
|
@ -57,7 +57,6 @@ int tap_get_fd(VLANClientState *vc);
|
|||
struct vhost_net;
|
||||
struct vhost_net *tap_get_vhost_net(VLANClientState *vc);
|
||||
|
||||
int net_init_bridge(QemuOpts *opts, Monitor *mon, const char *name,
|
||||
VLANState *vlan);
|
||||
int net_init_bridge(QemuOpts *opts, const char *name, VLANState *vlan);
|
||||
|
||||
#endif /* QEMU_NET_TAP_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue