net: Fix dump time stamps

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka 2009-05-10 22:23:23 +02:00 committed by Anthony Liguori
parent 769ce76d0e
commit 37cb6fc37b
1 changed files with 2 additions and 2 deletions

4
net.c
View File

@ -1641,10 +1641,10 @@ static void dump_receive(void *opaque, const uint8_t *buf, int size)
return;
}
ts = muldiv64 (qemu_get_clock(vm_clock),1000000, ticks_per_sec);
ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
hdr.ts.tv_sec = ts / 1000000000LL;
hdr.ts.tv_sec = ts / 1000000;
hdr.ts.tv_usec = ts % 1000000;
hdr.caplen = caplen;
hdr.len = size;