mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
net: Drop vlan argument to qemu_new_net_client()
Since hubs are now used to implement the 'vlan' feature and the vlan argument is always NULL, remove the argument entirely and update all net clients that use qemu_new_net_client(). Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
81017645e4
commit
ab5f3f84c4
9 changed files with 18 additions and 26 deletions
|
@ -129,7 +129,7 @@ static int net_dump_init(VLANClientState *peer, const char *device,
|
|||
return -1;
|
||||
}
|
||||
|
||||
nc = qemu_new_net_client(&net_dump_info, NULL, peer, device, name);
|
||||
nc = qemu_new_net_client(&net_dump_info, peer, device, name);
|
||||
|
||||
snprintf(nc->info_str, sizeof(nc->info_str),
|
||||
"dump to %s (len=%d)", filename, len);
|
||||
|
|
|
@ -129,7 +129,7 @@ static NetHubPort *net_hub_port_new(NetHub *hub, const char *name)
|
|||
name = default_name;
|
||||
}
|
||||
|
||||
nc = qemu_new_net_client(&net_hub_port_info, NULL, NULL, "hub", name);
|
||||
nc = qemu_new_net_client(&net_hub_port_info, NULL, "hub", name);
|
||||
port = DO_UPCAST(NetHubPort, nc, nc);
|
||||
port->id = id;
|
||||
port->hub = hub;
|
||||
|
|
|
@ -239,7 +239,7 @@ static int net_slirp_init(VLANClientState *peer, const char *model,
|
|||
}
|
||||
#endif
|
||||
|
||||
nc = qemu_new_net_client(&net_slirp_info, NULL, peer, model, name);
|
||||
nc = qemu_new_net_client(&net_slirp_info, peer, model, name);
|
||||
|
||||
snprintf(nc->info_str, sizeof(nc->info_str),
|
||||
"net=%s,restrict=%s", inet_ntoa(net),
|
||||
|
|
|
@ -287,7 +287,7 @@ static NetSocketState *net_socket_fd_init_dgram(VLANClientState *peer,
|
|||
}
|
||||
}
|
||||
|
||||
nc = qemu_new_net_client(&net_dgram_socket_info, NULL, peer, model, name);
|
||||
nc = qemu_new_net_client(&net_dgram_socket_info, peer, model, name);
|
||||
|
||||
snprintf(nc->info_str, sizeof(nc->info_str),
|
||||
"socket: fd=%d (%s mcast=%s:%d)",
|
||||
|
@ -331,7 +331,7 @@ static NetSocketState *net_socket_fd_init_stream(VLANClientState *peer,
|
|||
VLANClientState *nc;
|
||||
NetSocketState *s;
|
||||
|
||||
nc = qemu_new_net_client(&net_socket_info, NULL, peer, model, name);
|
||||
nc = qemu_new_net_client(&net_socket_info, peer, model, name);
|
||||
|
||||
snprintf(nc->info_str, sizeof(nc->info_str), "socket: fd=%d", fd);
|
||||
|
||||
|
|
|
@ -685,7 +685,7 @@ static int tap_win32_init(VLANClientState *peer, const char *model,
|
|||
return -1;
|
||||
}
|
||||
|
||||
nc = qemu_new_net_client(&net_tap_win32_info, NULL, peer, model, name);
|
||||
nc = qemu_new_net_client(&net_tap_win32_info, peer, model, name);
|
||||
|
||||
s = DO_UPCAST(TAPState, nc, nc);
|
||||
|
||||
|
|
|
@ -331,7 +331,7 @@ static TAPState *net_tap_fd_init(VLANClientState *peer,
|
|||
VLANClientState *nc;
|
||||
TAPState *s;
|
||||
|
||||
nc = qemu_new_net_client(&net_tap_info, NULL, peer, model, name);
|
||||
nc = qemu_new_net_client(&net_tap_info, peer, model, name);
|
||||
|
||||
s = DO_UPCAST(TAPState, nc, nc);
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ static int net_vde_init(VLANClientState *peer, const char *model,
|
|||
return -1;
|
||||
}
|
||||
|
||||
nc = qemu_new_net_client(&net_vde_info, NULL, peer, model, name);
|
||||
nc = qemu_new_net_client(&net_vde_info, peer, model, name);
|
||||
|
||||
snprintf(nc->info_str, sizeof(nc->info_str), "sock=%s,fd=%d",
|
||||
sock, vde_datafd(vde));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue