search for: qemu_icount

Displaying 2 results from an estimated 2 matches for "qemu_icount".

2012 Mar 16
2
[PATCH v3] use INT64_MAX as max expiration
...count = (count + (1 << icount_time_shift) - 1) - >> icount_time_shift; + count = (count >> icount_time_shift) + + ((count & ((1 << icount_time_shift) - 1)) > 0 ? 1 : 0); qemu_icount += count; decr = (count > 0xffff) ? 0xffff : count; count -= decr; -- 1.7.1
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very