diff options
author | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-07-24 16:35:08 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-08-01 12:28:51 +0100 |
commit | ab5f3f84c4362c3014b1ecdb450f430d01b96f19 (patch) | |
tree | d57587556fd2a32ea6ac20e249d9b408318cff01 /net/dump.c | |
parent | 81017645e45bcb0b4d985e900c501f92f2c6fb60 (diff) | |
download | qemu-ab5f3f84c4362c3014b1ecdb450f430d01b96f19.tar.gz qemu-ab5f3f84c4362c3014b1ecdb450f430d01b96f19.tar.bz2 qemu-ab5f3f84c4362c3014b1ecdb450f430d01b96f19.zip |
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>
Diffstat (limited to 'net/dump.c')
-rw-r--r-- | net/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dump.c b/net/dump.c index 9d7bf3be4d..69d5abe1e9 100644 --- a/net/dump.c +++ b/net/dump.c @@ -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); |