qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend
@ 2011-11-30 20:35 Hervé Poussineau
  2011-11-30 20:35 ` [Qemu-devel] [PATCH 1/2] net: truncate output file when using " Hervé Poussineau
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Hervé Poussineau @ 2011-11-30 20:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: Hervé Poussineau

This small patchset fixes some problems I've found while using
the dump backend.
At least first patch may be considered for 1.0.

Changes v1->v2:
- Update patches descriptions

Hervé Poussineau (2):
  net: truncate output file when using dump backend
  net: store guest timestamp in dump file instead of time since guest
    startup

 net/dump.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

-- 
1.7.6.3

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PATCH 1/2] net: truncate output file when using dump backend
  2011-11-30 20:35 [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Hervé Poussineau
@ 2011-11-30 20:35 ` Hervé Poussineau
  2011-11-30 20:35 ` [Qemu-devel] [PATCH 2/2] net: store guest timestamp in dump file instead of time since guest startup Hervé Poussineau
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Hervé Poussineau @ 2011-11-30 20:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: Hervé Poussineau

This prevents data of a previous run to be seen in the new dump file.

Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
---
 net/dump.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/dump.c b/net/dump.c
index 0d0cbb2..8132411 100644
--- a/net/dump.c
+++ b/net/dump.c
@@ -106,7 +106,7 @@ static int net_dump_init(VLANState *vlan, const char *device,
     DumpState *s;
     int fd;
 
-    fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
+    fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
     if (fd < 0) {
         error_report("-net dump: can't open %s", filename);
         return -1;
-- 
1.7.6.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PATCH 2/2] net: store guest timestamp in dump file instead of time since guest startup
  2011-11-30 20:35 [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Hervé Poussineau
  2011-11-30 20:35 ` [Qemu-devel] [PATCH 1/2] net: truncate output file when using " Hervé Poussineau
@ 2011-11-30 20:35 ` Hervé Poussineau
  2011-12-01  8:02 ` [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Stefan Hajnoczi
  2011-12-20 22:17 ` Anthony Liguori
  3 siblings, 0 replies; 5+ messages in thread
From: Hervé Poussineau @ 2011-11-30 20:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: Hervé Poussineau

Stored dates are no more 1970-01-01 (+ run time), but have a real meaning.
If someone wants to have comparable timestamps accross boots, it is
possible to start qemu with -rtc to give the startup date.

Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
---
 net/dump.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/net/dump.c b/net/dump.c
index 8132411..4b48d48 100644
--- a/net/dump.c
+++ b/net/dump.c
@@ -30,6 +30,7 @@
 
 typedef struct DumpState {
     VLANClientState nc;
+    int64_t start_ts;
     int fd;
     int pcap_caplen;
 } DumpState;
@@ -70,7 +71,7 @@ static ssize_t dump_receive(VLANClientState *nc, const uint8_t *buf, size_t size
     ts = muldiv64(qemu_get_clock_ns(vm_clock), 1000000, get_ticks_per_sec());
     caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
 
-    hdr.ts.tv_sec = ts / 1000000;
+    hdr.ts.tv_sec = ts / 1000000 + s->start_ts;
     hdr.ts.tv_usec = ts % 1000000;
     hdr.caplen = caplen;
     hdr.len = size;
@@ -104,6 +105,7 @@ static int net_dump_init(VLANState *vlan, const char *device,
     struct pcap_file_hdr hdr;
     VLANClientState *nc;
     DumpState *s;
+    struct tm tm;
     int fd;
 
     fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
@@ -136,6 +138,9 @@ static int net_dump_init(VLANState *vlan, const char *device,
     s->fd = fd;
     s->pcap_caplen = len;
 
+    qemu_get_timedate(&tm, 0);
+    s->start_ts = mktime(&tm);
+
     return 0;
 }
 
-- 
1.7.6.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend
  2011-11-30 20:35 [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Hervé Poussineau
  2011-11-30 20:35 ` [Qemu-devel] [PATCH 1/2] net: truncate output file when using " Hervé Poussineau
  2011-11-30 20:35 ` [Qemu-devel] [PATCH 2/2] net: store guest timestamp in dump file instead of time since guest startup Hervé Poussineau
@ 2011-12-01  8:02 ` Stefan Hajnoczi
  2011-12-20 22:17 ` Anthony Liguori
  3 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-12-01  8:02 UTC (permalink / raw)
  To: Hervé Poussineau; +Cc: qemu-devel

On Wed, Nov 30, 2011 at 09:35:36PM +0100, Hervé Poussineau wrote:
> This small patchset fixes some problems I've found while using
> the dump backend.
> At least first patch may be considered for 1.0.
> 
> Changes v1->v2:
> - Update patches descriptions

Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend
  2011-11-30 20:35 [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Hervé Poussineau
                   ` (2 preceding siblings ...)
  2011-12-01  8:02 ` [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Stefan Hajnoczi
@ 2011-12-20 22:17 ` Anthony Liguori
  3 siblings, 0 replies; 5+ messages in thread
From: Anthony Liguori @ 2011-12-20 22:17 UTC (permalink / raw)
  To: Hervé Poussineau; +Cc: qemu-devel

On 11/30/2011 02:35 PM, Hervé Poussineau wrote:
> This small patchset fixes some problems I've found while using
> the dump backend.
> At least first patch may be considered for 1.0.

Applied all.  Thanks.

Regards,

Anthony Liguori

>
> Changes v1->v2:
> - Update patches descriptions
>
> Hervé Poussineau (2):
>    net: truncate output file when using dump backend
>    net: store guest timestamp in dump file instead of time since guest
>      startup
>
>   net/dump.c |    9 +++++++--
>   1 files changed, 7 insertions(+), 2 deletions(-)
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-12-20 22:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30 20:35 [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Hervé Poussineau
2011-11-30 20:35 ` [Qemu-devel] [PATCH 1/2] net: truncate output file when using " Hervé Poussineau
2011-11-30 20:35 ` [Qemu-devel] [PATCH 2/2] net: store guest timestamp in dump file instead of time since guest startup Hervé Poussineau
2011-12-01  8:02 ` [Qemu-devel] [PATCH v2 0/2] net: fix some problems with dump backend Stefan Hajnoczi
2011-12-20 22:17 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).