Blame SOURCES/kvm-virtiofsd-print-log-only-when-priority-is-high-enoug.patch

22c213
From 5c9bbd00e8f8c944d9e8e22e7d1cf08cb8fddd6b Mon Sep 17 00:00:00 2001
22c213
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
Date: Mon, 27 Jan 2020 19:01:37 +0100
22c213
Subject: [PATCH 066/116] virtiofsd: print log only when priority is high
22c213
 enough
22c213
MIME-Version: 1.0
22c213
Content-Type: text/plain; charset=UTF-8
22c213
Content-Transfer-Encoding: 8bit
22c213
22c213
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
Message-id: <20200127190227.40942-63-dgilbert@redhat.com>
22c213
Patchwork-id: 93518
22c213
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 062/112] virtiofsd: print log only when priority is high enough
22c213
Bugzilla: 1694164
22c213
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
22c213
22c213
From: Eryu Guan <eguan@linux.alibaba.com>
22c213
22c213
Introduce "-o log_level=" command line option to specify current log
22c213
level (priority), valid values are "debug info warn err", e.g.
22c213
22c213
    ./virtiofsd -o log_level=debug ...
22c213
22c213
So only log priority higher than "debug" will be printed to
22c213
stderr/syslog. And the default level is info.
22c213
22c213
The "-o debug"/"-d" options are kept, and imply debug log level.
22c213
22c213
Signed-off-by: Eryu Guan <eguan@linux.alibaba.com>
22c213
dgilbert: Reworked for libfuse's log_func
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
with fix by:
22c213
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
22c213
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
(cherry picked from commit d240314a1a18a1d914af1b5763fe8c9a572e6409)
22c213
22c213
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
22c213
---
22c213
 tools/virtiofsd/fuse_lowlevel.c  |  75 ++++++++++---------------
22c213
 tools/virtiofsd/fuse_lowlevel.h  |   1 +
22c213
 tools/virtiofsd/helper.c         |   8 ++-
22c213
 tools/virtiofsd/passthrough_ll.c | 118 ++++++++++++++++-----------------------
22c213
 4 files changed, 87 insertions(+), 115 deletions(-)
22c213
22c213
diff --git a/tools/virtiofsd/fuse_lowlevel.c b/tools/virtiofsd/fuse_lowlevel.c
22c213
index 6ceb33d..a7a1968 100644
22c213
--- a/tools/virtiofsd/fuse_lowlevel.c
22c213
+++ b/tools/virtiofsd/fuse_lowlevel.c
22c213
@@ -158,19 +158,17 @@ static int fuse_send_msg(struct fuse_session *se, struct fuse_chan *ch,
22c213
     struct fuse_out_header *out = iov[0].iov_base;
22c213
 
22c213
     out->len = iov_length(iov, count);
22c213
-    if (se->debug) {
22c213
-        if (out->unique == 0) {
22c213
-            fuse_log(FUSE_LOG_DEBUG, "NOTIFY: code=%d length=%u\n", out->error,
22c213
-                     out->len);
22c213
-        } else if (out->error) {
22c213
-            fuse_log(FUSE_LOG_DEBUG,
22c213
-                     "   unique: %llu, error: %i (%s), outsize: %i\n",
22c213
-                     (unsigned long long)out->unique, out->error,
22c213
-                     strerror(-out->error), out->len);
22c213
-        } else {
22c213
-            fuse_log(FUSE_LOG_DEBUG, "   unique: %llu, success, outsize: %i\n",
22c213
-                     (unsigned long long)out->unique, out->len);
22c213
-        }
22c213
+    if (out->unique == 0) {
22c213
+        fuse_log(FUSE_LOG_DEBUG, "NOTIFY: code=%d length=%u\n", out->error,
22c213
+                 out->len);
22c213
+    } else if (out->error) {
22c213
+        fuse_log(FUSE_LOG_DEBUG,
22c213
+                 "   unique: %llu, error: %i (%s), outsize: %i\n",
22c213
+                 (unsigned long long)out->unique, out->error,
22c213
+                 strerror(-out->error), out->len);
22c213
+    } else {
22c213
+        fuse_log(FUSE_LOG_DEBUG, "   unique: %llu, success, outsize: %i\n",
22c213
+                 (unsigned long long)out->unique, out->len);
22c213
     }
22c213
 
22c213
     if (fuse_lowlevel_is_virtio(se)) {
22c213
@@ -1662,10 +1660,8 @@ static void do_interrupt(fuse_req_t req, fuse_ino_t nodeid,
22c213
         return;
22c213
     }
22c213
 
22c213
-    if (se->debug) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "INTERRUPT: %llu\n",
22c213
-                 (unsigned long long)arg->unique);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "INTERRUPT: %llu\n",
22c213
+             (unsigned long long)arg->unique);
22c213
 
22c213
     req->u.i.unique = arg->unique;
22c213
 
22c213
@@ -1901,13 +1897,10 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid,
22c213
         }
22c213
     }
22c213
 
22c213
-    if (se->debug) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "INIT: %u.%u\n", arg->major, arg->minor);
22c213
-        if (arg->major == 7 && arg->minor >= 6) {
22c213
-            fuse_log(FUSE_LOG_DEBUG, "flags=0x%08x\n", arg->flags);
22c213
-            fuse_log(FUSE_LOG_DEBUG, "max_readahead=0x%08x\n",
22c213
-                     arg->max_readahead);
22c213
-        }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "INIT: %u.%u\n", arg->major, arg->minor);
22c213
+    if (arg->major == 7 && arg->minor >= 6) {
22c213
+        fuse_log(FUSE_LOG_DEBUG, "flags=0x%08x\n", arg->flags);
22c213
+        fuse_log(FUSE_LOG_DEBUG, "max_readahead=0x%08x\n", arg->max_readahead);
22c213
     }
22c213
     se->conn.proto_major = arg->major;
22c213
     se->conn.proto_minor = arg->minor;
22c213
@@ -2116,19 +2109,14 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid,
22c213
     outarg.congestion_threshold = se->conn.congestion_threshold;
22c213
     outarg.time_gran = se->conn.time_gran;
22c213
 
22c213
-    if (se->debug) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   INIT: %u.%u\n", outarg.major,
22c213
-                 outarg.minor);
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   flags=0x%08x\n", outarg.flags);
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   max_readahead=0x%08x\n",
22c213
-                 outarg.max_readahead);
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   max_write=0x%08x\n", outarg.max_write);
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   max_background=%i\n",
22c213
-                 outarg.max_background);
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   congestion_threshold=%i\n",
22c213
-                 outarg.congestion_threshold);
22c213
-        fuse_log(FUSE_LOG_DEBUG, "   time_gran=%u\n", outarg.time_gran);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   INIT: %u.%u\n", outarg.major, outarg.minor);
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   flags=0x%08x\n", outarg.flags);
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   max_readahead=0x%08x\n", outarg.max_readahead);
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   max_write=0x%08x\n", outarg.max_write);
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   max_background=%i\n", outarg.max_background);
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   congestion_threshold=%i\n",
22c213
+             outarg.congestion_threshold);
22c213
+    fuse_log(FUSE_LOG_DEBUG, "   time_gran=%u\n", outarg.time_gran);
22c213
 
22c213
     send_reply_ok(req, &outarg, outargsize);
22c213
 }
22c213
@@ -2407,14 +2395,11 @@ void fuse_session_process_buf_int(struct fuse_session *se,
22c213
     in = fuse_mbuf_iter_advance(&iter, sizeof(*in));
22c213
     assert(in); /* caller guarantees the input buffer is large enough */
22c213
 
22c213
-    if (se->debug) {
22c213
-        fuse_log(FUSE_LOG_DEBUG,
22c213
-                 "unique: %llu, opcode: %s (%i), nodeid: %llu, insize: %zu, "
22c213
-                 "pid: %u\n",
22c213
-                 (unsigned long long)in->unique,
22c213
-                 opname((enum fuse_opcode)in->opcode), in->opcode,
22c213
-                 (unsigned long long)in->nodeid, buf->size, in->pid);
22c213
-    }
22c213
+    fuse_log(
22c213
+        FUSE_LOG_DEBUG,
22c213
+        "unique: %llu, opcode: %s (%i), nodeid: %llu, insize: %zu, pid: %u\n",
22c213
+        (unsigned long long)in->unique, opname((enum fuse_opcode)in->opcode),
22c213
+        in->opcode, (unsigned long long)in->nodeid, buf->size, in->pid);
22c213
 
22c213
     req = fuse_ll_alloc_req(se);
22c213
     if (req == NULL) {
22c213
diff --git a/tools/virtiofsd/fuse_lowlevel.h b/tools/virtiofsd/fuse_lowlevel.h
22c213
index f2750bc..138041e 100644
22c213
--- a/tools/virtiofsd/fuse_lowlevel.h
22c213
+++ b/tools/virtiofsd/fuse_lowlevel.h
22c213
@@ -1796,6 +1796,7 @@ struct fuse_cmdline_opts {
22c213
     int show_help;
22c213
     int print_capabilities;
22c213
     int syslog;
22c213
+    int log_level;
22c213
     unsigned int max_idle_threads;
22c213
 };
22c213
 
22c213
diff --git a/tools/virtiofsd/helper.c b/tools/virtiofsd/helper.c
22c213
index 9692ef9..6d50a46 100644
22c213
--- a/tools/virtiofsd/helper.c
22c213
+++ b/tools/virtiofsd/helper.c
22c213
@@ -34,7 +34,6 @@
22c213
         t, offsetof(struct fuse_cmdline_opts, p), v \
22c213
     }
22c213
 
22c213
-
22c213
 static const struct fuse_opt fuse_helper_opts[] = {
22c213
     FUSE_HELPER_OPT("-h", show_help),
22c213
     FUSE_HELPER_OPT("--help", show_help),
22c213
@@ -55,6 +54,10 @@ static const struct fuse_opt fuse_helper_opts[] = {
22c213
     FUSE_OPT_KEY("subtype=", FUSE_OPT_KEY_KEEP),
22c213
     FUSE_HELPER_OPT("max_idle_threads=%u", max_idle_threads),
22c213
     FUSE_HELPER_OPT("--syslog", syslog),
22c213
+    FUSE_HELPER_OPT_VALUE("log_level=debug", log_level, FUSE_LOG_DEBUG),
22c213
+    FUSE_HELPER_OPT_VALUE("log_level=info", log_level, FUSE_LOG_INFO),
22c213
+    FUSE_HELPER_OPT_VALUE("log_level=warn", log_level, FUSE_LOG_WARNING),
22c213
+    FUSE_HELPER_OPT_VALUE("log_level=err", log_level, FUSE_LOG_ERR),
22c213
     FUSE_OPT_END
22c213
 };
22c213
 
22c213
@@ -142,6 +145,9 @@ void fuse_cmdline_help(void)
22c213
            "    --syslog                   log to syslog (default stderr)\n"
22c213
            "    -f                         foreground operation\n"
22c213
            "    --daemonize                run in background\n"
22c213
+           "    -o log_level=<level>       log level, default to \"info\"\n"
22c213
+           "                               level could be one of \"debug, "
22c213
+           "info, warn, err\"\n"
22c213
            "    -o max_idle_threads        the maximum number of idle worker "
22c213
            "threads\n"
22c213
            "                               allowed (default: 10)\n"
22c213
diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
22c213
index 0372aca..ff6910f 100644
22c213
--- a/tools/virtiofsd/passthrough_ll.c
22c213
+++ b/tools/virtiofsd/passthrough_ll.c
22c213
@@ -37,6 +37,7 @@
22c213
 
22c213
 #include "qemu/osdep.h"
22c213
 #include "fuse_virtio.h"
22c213
+#include "fuse_log.h"
22c213
 #include "fuse_lowlevel.h"
22c213
 #include <assert.h>
22c213
 #include <cap-ng.h>
22c213
@@ -140,6 +141,7 @@ static const struct fuse_opt lo_opts[] = {
22c213
     FUSE_OPT_END
22c213
 };
22c213
 static bool use_syslog = false;
22c213
+static int current_log_level;
22c213
 
22c213
 static void unref_inode(struct lo_data *lo, struct lo_inode *inode, uint64_t n);
22c213
 
22c213
@@ -458,11 +460,6 @@ static int lo_fd(fuse_req_t req, fuse_ino_t ino)
22c213
     return inode ? inode->fd : -1;
22c213
 }
22c213
 
22c213
-static bool lo_debug(fuse_req_t req)
22c213
-{
22c213
-    return lo_data(req)->debug != 0;
22c213
-}
22c213
-
22c213
 static void lo_init(void *userdata, struct fuse_conn_info *conn)
22c213
 {
22c213
     struct lo_data *lo = (struct lo_data *)userdata;
22c213
@@ -472,15 +469,11 @@ static void lo_init(void *userdata, struct fuse_conn_info *conn)
22c213
     }
22c213
 
22c213
     if (lo->writeback && conn->capable & FUSE_CAP_WRITEBACK_CACHE) {
22c213
-        if (lo->debug) {
22c213
-            fuse_log(FUSE_LOG_DEBUG, "lo_init: activating writeback\n");
22c213
-        }
22c213
+        fuse_log(FUSE_LOG_DEBUG, "lo_init: activating writeback\n");
22c213
         conn->want |= FUSE_CAP_WRITEBACK_CACHE;
22c213
     }
22c213
     if (lo->flock && conn->capable & FUSE_CAP_FLOCK_LOCKS) {
22c213
-        if (lo->debug) {
22c213
-            fuse_log(FUSE_LOG_DEBUG, "lo_init: activating flock locks\n");
22c213
-        }
22c213
+        fuse_log(FUSE_LOG_DEBUG, "lo_init: activating flock locks\n");
22c213
         conn->want |= FUSE_CAP_FLOCK_LOCKS;
22c213
     }
22c213
 }
22c213
@@ -823,10 +816,8 @@ static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name,
22c213
     }
22c213
     e->ino = inode->fuse_ino;
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "  %lli/%s -> %lli\n",
22c213
-                 (unsigned long long)parent, name, (unsigned long long)e->ino);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "  %lli/%s -> %lli\n", (unsigned long long)parent,
22c213
+             name, (unsigned long long)e->ino);
22c213
 
22c213
     return 0;
22c213
 
22c213
@@ -843,10 +834,8 @@ static void lo_lookup(fuse_req_t req, fuse_ino_t parent, const char *name)
22c213
     struct fuse_entry_param e;
22c213
     int err;
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "lo_lookup(parent=%" PRIu64 ", name=%s)\n",
22c213
-                 parent, name);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_lookup(parent=%" PRIu64 ", name=%s)\n", parent,
22c213
+             name);
22c213
 
22c213
     /*
22c213
      * Don't use is_safe_path_component(), allow "." and ".." for NFS export
22c213
@@ -971,10 +960,8 @@ static void lo_mknod_symlink(fuse_req_t req, fuse_ino_t parent,
22c213
         goto out;
22c213
     }
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "  %lli/%s -> %lli\n",
22c213
-                 (unsigned long long)parent, name, (unsigned long long)e.ino);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "  %lli/%s -> %lli\n", (unsigned long long)parent,
22c213
+             name, (unsigned long long)e.ino);
22c213
 
22c213
     fuse_reply_entry(req, &e);
22c213
     return;
22c213
@@ -1074,10 +1061,8 @@ static void lo_link(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent,
22c213
     pthread_mutex_unlock(&lo->mutex);
22c213
     e.ino = inode->fuse_ino;
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "  %lli/%s -> %lli\n",
22c213
-                 (unsigned long long)parent, name, (unsigned long long)e.ino);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "  %lli/%s -> %lli\n", (unsigned long long)parent,
22c213
+             name, (unsigned long long)e.ino);
22c213
 
22c213
     fuse_reply_entry(req, &e);
22c213
     return;
22c213
@@ -1171,11 +1156,9 @@ static void lo_forget_one(fuse_req_t req, fuse_ino_t ino, uint64_t nlookup)
22c213
         return;
22c213
     }
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "  forget %lli %lli -%lli\n",
22c213
-                 (unsigned long long)ino, (unsigned long long)inode->refcount,
22c213
-                 (unsigned long long)nlookup);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "  forget %lli %lli -%lli\n",
22c213
+             (unsigned long long)ino, (unsigned long long)inode->refcount,
22c213
+             (unsigned long long)nlookup);
22c213
 
22c213
     unref_inode(lo, inode, nlookup);
22c213
 }
22c213
@@ -1445,10 +1428,8 @@ static void lo_create(fuse_req_t req, fuse_ino_t parent, const char *name,
22c213
     int err;
22c213
     struct lo_cred old = {};
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "lo_create(parent=%" PRIu64 ", name=%s)\n",
22c213
-                 parent, name);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_create(parent=%" PRIu64 ", name=%s)\n", parent,
22c213
+             name);
22c213
 
22c213
     if (!is_safe_path_component(name)) {
22c213
         fuse_reply_err(req, EINVAL);
22c213
@@ -1525,10 +1506,8 @@ static void lo_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
22c213
     char buf[64];
22c213
     struct lo_data *lo = lo_data(req);
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "lo_open(ino=%" PRIu64 ", flags=%d)\n", ino,
22c213
-                 fi->flags);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_open(ino=%" PRIu64 ", flags=%d)\n", ino,
22c213
+             fi->flags);
22c213
 
22c213
     /*
22c213
      * With writeback cache, kernel may send read requests even
22c213
@@ -1644,12 +1623,10 @@ static void lo_read(fuse_req_t req, fuse_ino_t ino, size_t size, off_t offset,
22c213
 {
22c213
     struct fuse_bufvec buf = FUSE_BUFVEC_INIT(size);
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG,
22c213
-                 "lo_read(ino=%" PRIu64 ", size=%zd, "
22c213
-                 "off=%lu)\n",
22c213
-                 ino, size, (unsigned long)offset);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG,
22c213
+             "lo_read(ino=%" PRIu64 ", size=%zd, "
22c213
+             "off=%lu)\n",
22c213
+             ino, size, (unsigned long)offset);
22c213
 
22c213
     buf.buf[0].flags = FUSE_BUF_IS_FD | FUSE_BUF_FD_SEEK;
22c213
     buf.buf[0].fd = lo_fi_fd(req, fi);
22c213
@@ -1671,11 +1648,9 @@ static void lo_write_buf(fuse_req_t req, fuse_ino_t ino,
22c213
     out_buf.buf[0].fd = lo_fi_fd(req, fi);
22c213
     out_buf.buf[0].pos = off;
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG,
22c213
-                 "lo_write(ino=%" PRIu64 ", size=%zd, off=%lu)\n", ino,
22c213
-                 out_buf.buf[0].size, (unsigned long)off);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG,
22c213
+             "lo_write_buf(ino=%" PRIu64 ", size=%zd, off=%lu)\n", ino,
22c213
+             out_buf.buf[0].size, (unsigned long)off);
22c213
 
22c213
     /*
22c213
      * If kill_priv is set, drop CAP_FSETID which should lead to kernel
22c213
@@ -1774,11 +1749,8 @@ static void lo_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
22c213
         goto out;
22c213
     }
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG,
22c213
-                 "lo_getxattr(ino=%" PRIu64 ", name=%s size=%zd)\n", ino, name,
22c213
-                 size);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_getxattr(ino=%" PRIu64 ", name=%s size=%zd)\n",
22c213
+             ino, name, size);
22c213
 
22c213
     if (inode->is_symlink) {
22c213
         /* Sorry, no race free way to getxattr on symlink. */
22c213
@@ -1852,10 +1824,8 @@ static void lo_listxattr(fuse_req_t req, fuse_ino_t ino, size_t size)
22c213
         goto out;
22c213
     }
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "lo_listxattr(ino=%" PRIu64 ", size=%zd)\n",
22c213
-                 ino, size);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_listxattr(ino=%" PRIu64 ", size=%zd)\n", ino,
22c213
+             size);
22c213
 
22c213
     if (inode->is_symlink) {
22c213
         /* Sorry, no race free way to listxattr on symlink. */
22c213
@@ -1929,11 +1899,8 @@ static void lo_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
22c213
         goto out;
22c213
     }
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG,
22c213
-                 "lo_setxattr(ino=%" PRIu64 ", name=%s value=%s size=%zd)\n",
22c213
-                 ino, name, value, size);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_setxattr(ino=%" PRIu64
22c213
+             ", name=%s value=%s size=%zd)\n", ino, name, value, size);
22c213
 
22c213
     if (inode->is_symlink) {
22c213
         /* Sorry, no race free way to setxattr on symlink. */
22c213
@@ -1978,10 +1945,8 @@ static void lo_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name)
22c213
         goto out;
22c213
     }
22c213
 
22c213
-    if (lo_debug(req)) {
22c213
-        fuse_log(FUSE_LOG_DEBUG, "lo_removexattr(ino=%" PRIu64 ", name=%s)\n",
22c213
-                 ino, name);
22c213
-    }
22c213
+    fuse_log(FUSE_LOG_DEBUG, "lo_removexattr(ino=%" PRIu64 ", name=%s)\n", ino,
22c213
+             name);
22c213
 
22c213
     if (inode->is_symlink) {
22c213
         /* Sorry, no race free way to setxattr on symlink. */
22c213
@@ -2303,6 +2268,10 @@ static void setup_nofile_rlimit(void)
22c213
 
22c213
 static void log_func(enum fuse_log_level level, const char *fmt, va_list ap)
22c213
 {
22c213
+    if (current_log_level < level) {
22c213
+        return;
22c213
+    }
22c213
+
22c213
     if (use_syslog) {
22c213
         int priority = LOG_ERR;
22c213
         switch (level) {
22c213
@@ -2401,8 +2370,19 @@ int main(int argc, char *argv[])
22c213
         return 1;
22c213
     }
22c213
 
22c213
+    /*
22c213
+     * log_level is 0 if not configured via cmd options (0 is LOG_EMERG,
22c213
+     * and we don't use this log level).
22c213
+     */
22c213
+    if (opts.log_level != 0) {
22c213
+        current_log_level = opts.log_level;
22c213
+    }
22c213
     lo.debug = opts.debug;
22c213
+    if (lo.debug) {
22c213
+        current_log_level = FUSE_LOG_DEBUG;
22c213
+    }
22c213
     lo.root.refcount = 2;
22c213
+
22c213
     if (lo.source) {
22c213
         struct stat stat;
22c213
         int res;
22c213
-- 
22c213
1.8.3.1
22c213