[CRIU] [PATCH 2/2 v2] criu: pie, log -- Print tid of writting process
Cyrill Gorcunov
gorcunov at gmail.com
Thu May 19 12:17:19 PDT 2016
On Thu, May 19, 2016 at 10:12:25PM +0300, Cyrill Gorcunov wrote:
> For more convenient log parsing.
>
Forgot to push updated version into git. Attached
-------------- next part --------------
>From 04f18a321df1844c14a324f58e24c6d217af9850 Mon Sep 17 00:00:00 2001
From: Cyrill Gorcunov <gorcunov at openvz.org>
Date: Thu, 19 May 2016 22:11:44 +0300
Subject: [PATCH] criu: pie, log -- Print tid of writting process
For more convenient log parsing.
Reported-by: Pavel Emelyanov <xemul at virtuozzo.com>
Signed-off-by: Cyrill Gorcunov <gorcunov at openvz.org>
---
criu/pie/log-simple.c | 21 +++++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
diff --git a/criu/pie/log-simple.c b/criu/pie/log-simple.c
index f4470af57f66..342edec853ce 100644
--- a/criu/pie/log-simple.c
+++ b/criu/pie/log-simple.c
@@ -8,6 +8,7 @@
struct simple_buf {
char buf[LOG_SIMPLE_CHUNK];
char *bp;
+ size_t prefix_len;
void (*flush)(struct simple_buf *b);
};
@@ -18,18 +19,34 @@ static void sbuf_log_flush(struct simple_buf *b);
static void sbuf_log_init(struct simple_buf *b)
{
+ char pid_buf[12], *s;
+ size_t n;
+
+ /*
+ * Format:
+ *
+ * pie: pid: string-itself
+ */
+ b->prefix_len = vprint_num(pid_buf, sizeof(pid_buf), sys_gettid(), &s);
b->buf[0] = 'p';
b->buf[1] = 'i';
b->buf[2] = 'e';
b->buf[3] = ':';
b->buf[4] = ' ';
- b->bp = b->buf + 5;
+
+ for (n = 0; n < b->prefix_len; n++)
+ b->buf[n + 5] = s[n];
+ b->buf[n + 5] = ':';
+ b->buf[n + 6] = ' ';
+ b->prefix_len += 7;
+
+ b->bp = b->buf + b->prefix_len;
b->flush = sbuf_log_flush;
}
static void sbuf_log_flush(struct simple_buf *b)
{
- if (b->bp == b->buf + 5)
+ if (b->bp == b->buf + b->prefix_len)
return;
sys_write(logfd, b->buf, b->bp - b->buf);
--
2.5.5
More information about the CRIU
mailing list