mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue