Vladislav Yasevich <vyase...@redhat.com> wrote: > Switch qemu_announce_self and virtio annoucements to use > the announcement timer framework. This makes sure that both > timers use the same timeouts and number of annoucement attempts > > Based on work by Dr. David Alan Gilbert <dgilb...@redhat.com> > > Signed-off-by: Vladislav Yasevich <vyase...@redhat.com>
> static void qemu_announce_self_once(void *opaque) > { > - static int count = SELF_ANNOUNCE_ROUNDS; > - QEMUTimer *timer = *(QEMUTimer **)opaque; > + AnnounceTimer *timer = (AnnounceTimer *)opaque; Cast from void * is never needed.