qemu-patch-raspberry4/net
Paolo Bonzini 7447545544 change all other clock references to use nanosecond resolution accessors
This was done with:

    sed -i 's/qemu_get_clock\>/qemu_get_clock_ns/' \
        $(git grep -l 'qemu_get_clock\>' )
    sed -i 's/qemu_new_timer\>/qemu_new_timer_ns/' \
        $(git grep -l 'qemu_new_timer\>' )

after checking that get_clock and new_timer never occur twice
on the same line.  There were no missed occurrences; however, even
if there had been, they would have been caught by the compiler.

There was exactly one false positive in qemu_run_timers:

     -    current_time = qemu_get_clock (clock);
     +    current_time = qemu_get_clock_ns (clock);

which is of course not in this patch.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2011-03-21 09:23:23 +01:00
..
checksum.c
checksum.h
dump.c change all other clock references to use nanosecond resolution accessors 2011-03-21 09:23:23 +01:00
dump.h
queue.c
queue.h
slirp.c
slirp.h
socket.c Fixing network over sockets implementation for win32 2011-02-25 15:13:02 +00:00
socket.h
tap-aix.c
tap-bsd.c Add support for OpenBSD to QEMU's tap driver. 2010-12-21 19:44:33 +00:00
tap-haiku.c
tap-linux.c tap: safe sndbuf default 2011-02-01 16:50:44 -06:00
tap-linux.h
tap-solaris.c
tap-win32.c Fixing tap adapter for win32 2011-02-25 15:14:04 +00:00
tap.c vhost: force vhost off for non-MSI guests 2011-02-01 16:50:44 -06:00
tap.h
util.c
util.h
vde.c
vde.h