mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
aio / timers: Switch entire codebase to the new timer API
This is an autogenerated patch using scripts/switch-timer-api. Switch the entire code base to using the new timer API. Note this patch may introduce some line length issues. Signed-off-by: Alex Bligh <alex@alex.org.uk> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
fe10ab540b
commit
bc72ad6754
121 changed files with 678 additions and 678 deletions
|
@ -87,7 +87,7 @@ static inline void csrhci_fifo_wake(struct csrhci_s *s)
|
|||
}
|
||||
|
||||
if (s->out_len)
|
||||
qemu_mod_timer(s->out_tm, qemu_get_clock_ns(vm_clock) + s->baud_delay);
|
||||
timer_mod(s->out_tm, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + s->baud_delay);
|
||||
}
|
||||
|
||||
#define csrhci_out_packetz(s, len) memset(csrhci_out_packet(s, len), 0, len)
|
||||
|
@ -446,7 +446,7 @@ CharDriverState *uart_hci_init(qemu_irq wakeup)
|
|||
s->hci->evt_recv = csrhci_out_hci_packet_event;
|
||||
s->hci->acl_recv = csrhci_out_hci_packet_acl;
|
||||
|
||||
s->out_tm = qemu_new_timer_ns(vm_clock, csrhci_out_tick, s);
|
||||
s->out_tm = timer_new_ns(QEMU_CLOCK_VIRTUAL, csrhci_out_tick, s);
|
||||
s->pins = qemu_allocate_irqs(csrhci_pins, s, __csrhci_pins);
|
||||
csrhci_reset(s);
|
||||
|
||||
|
|
38
hw/bt/hci.c
38
hw/bt/hci.c
|
@ -576,7 +576,7 @@ static void bt_hci_inquiry_result(struct bt_hci_s *hci,
|
|||
|
||||
static void bt_hci_mod_timer_1280ms(QEMUTimer *timer, int period)
|
||||
{
|
||||
qemu_mod_timer(timer, qemu_get_clock_ns(vm_clock) +
|
||||
timer_mod(timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
|
||||
muldiv64(period << 7, get_ticks_per_sec(), 100));
|
||||
}
|
||||
|
||||
|
@ -657,7 +657,7 @@ static void bt_hci_lmp_link_establish(struct bt_hci_s *hci,
|
|||
if (master) {
|
||||
link->acl_mode = acl_active;
|
||||
hci->lm.handle[hci->lm.last_handle].acl_mode_timer =
|
||||
qemu_new_timer_ns(vm_clock, bt_hci_mode_tick, link);
|
||||
timer_new_ns(QEMU_CLOCK_VIRTUAL, bt_hci_mode_tick, link);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -667,8 +667,8 @@ static void bt_hci_lmp_link_teardown(struct bt_hci_s *hci, uint16_t handle)
|
|||
hci->lm.handle[handle].link = NULL;
|
||||
|
||||
if (bt_hci_role_master(hci, handle)) {
|
||||
qemu_del_timer(hci->lm.handle[handle].acl_mode_timer);
|
||||
qemu_free_timer(hci->lm.handle[handle].acl_mode_timer);
|
||||
timer_del(hci->lm.handle[handle].acl_mode_timer);
|
||||
timer_free(hci->lm.handle[handle].acl_mode_timer);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1080,7 +1080,7 @@ static int bt_hci_mode_change(struct bt_hci_s *hci, uint16_t handle,
|
|||
|
||||
bt_hci_event_status(hci, HCI_SUCCESS);
|
||||
|
||||
qemu_mod_timer(link->acl_mode_timer, qemu_get_clock_ns(vm_clock) +
|
||||
timer_mod(link->acl_mode_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
|
||||
muldiv64(interval * 625, get_ticks_per_sec(), 1000000));
|
||||
bt_hci_lmp_mode_change_master(hci, link->link, mode, interval);
|
||||
|
||||
|
@ -1103,7 +1103,7 @@ static int bt_hci_mode_cancel(struct bt_hci_s *hci, uint16_t handle, int mode)
|
|||
|
||||
bt_hci_event_status(hci, HCI_SUCCESS);
|
||||
|
||||
qemu_del_timer(link->acl_mode_timer);
|
||||
timer_del(link->acl_mode_timer);
|
||||
bt_hci_lmp_mode_change_master(hci, link->link, acl_active, 0);
|
||||
|
||||
return 0;
|
||||
|
@ -1146,10 +1146,10 @@ static void bt_hci_reset(struct bt_hci_s *hci)
|
|||
hci->psb_handle = 0x000;
|
||||
hci->asb_handle = 0x000;
|
||||
|
||||
/* XXX: qemu_del_timer(sl->acl_mode_timer); for all links */
|
||||
qemu_del_timer(hci->lm.inquiry_done);
|
||||
qemu_del_timer(hci->lm.inquiry_next);
|
||||
qemu_del_timer(hci->conn_accept_timer);
|
||||
/* XXX: timer_del(sl->acl_mode_timer); for all links */
|
||||
timer_del(hci->lm.inquiry_done);
|
||||
timer_del(hci->lm.inquiry_next);
|
||||
timer_del(hci->conn_accept_timer);
|
||||
}
|
||||
|
||||
static void bt_hci_read_local_version_rp(struct bt_hci_s *hci)
|
||||
|
@ -1514,7 +1514,7 @@ static void bt_submit_hci(struct HCIInfo *info,
|
|||
}
|
||||
|
||||
hci->lm.inquire = 0;
|
||||
qemu_del_timer(hci->lm.inquiry_done);
|
||||
timer_del(hci->lm.inquiry_done);
|
||||
bt_hci_event_complete_status(hci, HCI_SUCCESS);
|
||||
break;
|
||||
|
||||
|
@ -1552,8 +1552,8 @@ static void bt_submit_hci(struct HCIInfo *info,
|
|||
break;
|
||||
}
|
||||
hci->lm.inquire = 0;
|
||||
qemu_del_timer(hci->lm.inquiry_done);
|
||||
qemu_del_timer(hci->lm.inquiry_next);
|
||||
timer_del(hci->lm.inquiry_done);
|
||||
timer_del(hci->lm.inquiry_next);
|
||||
bt_hci_event_complete_status(hci, HCI_SUCCESS);
|
||||
break;
|
||||
|
||||
|
@ -2141,10 +2141,10 @@ struct HCIInfo *bt_new_hci(struct bt_scatternet_s *net)
|
|||
{
|
||||
struct bt_hci_s *s = g_malloc0(sizeof(struct bt_hci_s));
|
||||
|
||||
s->lm.inquiry_done = qemu_new_timer_ns(vm_clock, bt_hci_inquiry_done, s);
|
||||
s->lm.inquiry_next = qemu_new_timer_ns(vm_clock, bt_hci_inquiry_next, s);
|
||||
s->lm.inquiry_done = timer_new_ns(QEMU_CLOCK_VIRTUAL, bt_hci_inquiry_done, s);
|
||||
s->lm.inquiry_next = timer_new_ns(QEMU_CLOCK_VIRTUAL, bt_hci_inquiry_next, s);
|
||||
s->conn_accept_timer =
|
||||
qemu_new_timer_ns(vm_clock, bt_hci_conn_accept_timeout, s);
|
||||
timer_new_ns(QEMU_CLOCK_VIRTUAL, bt_hci_conn_accept_timeout, s);
|
||||
|
||||
s->evt_packet = bt_hci_evt_packet;
|
||||
s->evt_submit = bt_hci_evt_submit;
|
||||
|
@ -2209,9 +2209,9 @@ static void bt_hci_done(struct HCIInfo *info)
|
|||
* s->device.lmp_connection_complete to free the remaining bits once
|
||||
* hci->lm.awaiting_bdaddr[] is empty. */
|
||||
|
||||
qemu_free_timer(hci->lm.inquiry_done);
|
||||
qemu_free_timer(hci->lm.inquiry_next);
|
||||
qemu_free_timer(hci->conn_accept_timer);
|
||||
timer_free(hci->lm.inquiry_done);
|
||||
timer_free(hci->lm.inquiry_next);
|
||||
timer_free(hci->conn_accept_timer);
|
||||
|
||||
g_free(hci);
|
||||
}
|
||||
|
|
|
@ -166,9 +166,9 @@ static void l2cap_retransmission_timer_update(struct l2cap_chan_s *ch)
|
|||
{
|
||||
#if 0
|
||||
if (ch->mode != L2CAP_MODE_BASIC && ch->rexmit)
|
||||
qemu_mod_timer(ch->retransmission_timer);
|
||||
timer_mod(ch->retransmission_timer);
|
||||
else
|
||||
qemu_del_timer(ch->retransmission_timer);
|
||||
timer_del(ch->retransmission_timer);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -176,9 +176,9 @@ static void l2cap_monitor_timer_update(struct l2cap_chan_s *ch)
|
|||
{
|
||||
#if 0
|
||||
if (ch->mode != L2CAP_MODE_BASIC && !ch->rexmit)
|
||||
qemu_mod_timer(ch->monitor_timer);
|
||||
timer_mod(ch->monitor_timer);
|
||||
else
|
||||
qemu_del_timer(ch->monitor_timer);
|
||||
timer_del(ch->monitor_timer);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue