]> sourceware.org Git - lvm2.git/commitdiff
Small update of memlock debug messages.
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 8 Jul 2010 13:05:27 +0000 (13:05 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 8 Jul 2010 13:05:27 +0000 (13:05 +0000)
Gives slightly better alligned lines for reading.

lib/mm/memlock.c

index bc18c0df84591b4b261d92b525c88294dfd34f06..3bc13e40d792130fb43d0a2993cdfd28497ab4e2 100644 (file)
@@ -137,7 +137,8 @@ static int _maps_line(struct cmd_context *cmd, lvmlock_t lock,
 
        /* Select readable maps */
        if (fr != 'r') {
-               log_debug("mlock area unreadable '%s': Skipping.", line);
+               log_debug("% area unreadable %s : Skipping.",
+                         (lock == LVM_MLOCK) ? "mlock" : "munlock", line);
                return 1;
        }
 
@@ -171,7 +172,7 @@ static int _maps_line(struct cmd_context *cmd, lvmlock_t lock,
        }
 
        *mstats += sz;
-       log_debug("%s %10ldKiB %12lx - %12lx %c%c%c%c %s",
+       log_debug("%s %10ldKiB %12lx - %12lx %c%c%c%c%s",
                  (lock == LVM_MLOCK) ? "mlock" : "munlock",
                  ((long)sz + 1023) / 1024, from, to, fr, fw, fx, fp, line + pos);
 
This page took 0.041901 seconds and 5 git commands to generate.