qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 060/104] virtiofsd: Add timestamp to the log with FUSE_LOG_DEBUG


From: Dr. David Alan Gilbert (git)
Subject: [PATCH 060/104] virtiofsd: Add timestamp to the log with FUSE_LOG_DEBUG level
Date: Thu, 12 Dec 2019 16:38:20 +0000

From: Masayoshi Mizuma <address@hidden>

virtiofsd has some threads, so we see a lot of logs with debug option.
It would be useful for debugging if we can see the timestamp.

Add nano second timestamp, which got by get_clock(), to the log with
FUSE_LOG_DEBUG level if the syslog option isn't set.

The log is like as:

  ]# ./virtiofsd -d -o vhost_user_socket=/tmp/vhostqemu0 -o source=/tmp/share0 
-o cache=auto
  ...
  [5365943125463727] [ID: 00000002] fv_queue_thread: Start for queue 0 kick_fd 9
  [5365943125568644] [ID: 00000002] fv_queue_thread: Waiting for Queue 0 event
  [5365943125573561] [ID: 00000002] fv_queue_thread: Got queue event on Queue 0

Signed-off-by: Masayoshi Mizuma <address@hidden>
---
 tools/virtiofsd/passthrough_ll.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
index 8e00a90e6f..91d3120033 100644
--- a/tools/virtiofsd/passthrough_ll.c
+++ b/tools/virtiofsd/passthrough_ll.c
@@ -35,6 +35,8 @@
  * \include passthrough_ll.c
  */
 
+#include "qemu/osdep.h"
+#include "qemu/timer.h"
 #include "fuse_virtio.h"
 #include "fuse_log.h"
 #include "fuse_lowlevel.h"
@@ -2258,7 +2260,12 @@ static void log_func(enum fuse_log_level level, const 
char *_fmt, va_list ap)
     }
 
     if (current_log_level == FUSE_LOG_DEBUG) {
-        fmt = g_strdup_printf("[ID: %08ld] %s", syscall(__NR_gettid), _fmt);
+        if (!use_syslog) {
+            fmt = g_strdup_printf("[%ld] [ID: %08ld] %s", get_clock(),
+                                  syscall(__NR_gettid), _fmt);
+        } else {
+            fmt = g_strdup_printf("[ID: %08ld] %s", syscall(__NR_gettid), 
_fmt);
+        }
     }
 
     if (use_syslog) {
-- 
2.23.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]