mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Remove superfluous timer_del() calls
This commit is the result of running the timer-del-timer-free.cocci script on the whole source tree. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Acked-by: Corey Minyard <cminyard@mvista.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20201215154107.3255-4-peter.maydell@linaro.org
This commit is contained in:
parent
01b3e68bb1
commit
729cc68373
42 changed files with 0 additions and 58 deletions
|
@ -1862,7 +1862,6 @@ static void virtio_net_rsc_cleanup(VirtIONet *n)
|
|||
g_free(seg);
|
||||
}
|
||||
|
||||
timer_del(chain->drain_timer);
|
||||
timer_free(chain->drain_timer);
|
||||
QTAILQ_REMOVE(&n->rsc_chains, chain, next);
|
||||
g_free(chain);
|
||||
|
@ -2645,7 +2644,6 @@ static void virtio_net_del_queue(VirtIONet *n, int index)
|
|||
|
||||
virtio_del_queue(vdev, index * 2);
|
||||
if (q->tx_timer) {
|
||||
timer_del(q->tx_timer);
|
||||
timer_free(q->tx_timer);
|
||||
q->tx_timer = NULL;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue