mirror of
https://github.com/mii443/qemu.git
synced 2025-12-09 22:18:23 +00:00
net: Don't deliver to disabled interfaces in qemu_sendv_packet
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Mark McLoughlin <markmc@redhat.com>
This commit is contained in:
committed by
Mark McLoughlin
parent
98ba2632fc
commit
c8aa237c64
2
net.c
2
net.c
@@ -494,7 +494,7 @@ ssize_t qemu_sendv_packet(VLANClientState *vc1, const struct iovec *iov,
|
||||
|
||||
if (vc->link_down)
|
||||
len = calc_iov_length(iov, iovcnt);
|
||||
if (vc->fd_readv)
|
||||
else if (vc->fd_readv)
|
||||
len = vc->fd_readv(vc->opaque, iov, iovcnt);
|
||||
else if (vc->fd_read)
|
||||
len = vc_sendv_compat(vc, iov, iovcnt);
|
||||
|
||||
Reference in New Issue
Block a user