]> git.proxmox.com Git - mirror_qemu.git/commit
virtio-net: fix wild pointer when remove virtio-net queues
authorYunjian Wang <wangyunjian@huawei.com>
Wed, 26 Apr 2017 06:45:56 +0000 (14:45 +0800)
committerJason Wang <jasowang@redhat.com>
Tue, 23 May 2017 02:10:38 +0000 (10:10 +0800)
commitf989c30cf834ba8625e98b808eac30e4e7ec5008
treef9a8debf2839b06da475bdf72993dd13304c763b
parentf5ab20a4682959f06efe0787950a6c48a3e6f8fa
virtio-net: fix wild pointer when remove virtio-net queues

The tx_bh or tx_timer will free in virtio_net_del_queue() function, when
removing virtio-net queues if the guest doesn't support multiqueue. But
it might be still referenced by virtio_net_set_status(), which needs to
be set NULL. And also the tx_waiting needs to be set zero to prevent
virtio_net_set_status() accessing tx_bh or tx_timer.

Cc: qemu-stable@nongnu.org
Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
hw/net/virtio-net.c