]> sourceware.org Git - lvm2.git/commitdiff
cleanup: tab indent and typo
authorZdenek Kabelac <zkabelac@redhat.com>
Tue, 30 Apr 2024 11:49:45 +0000 (13:49 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 2 May 2024 09:58:26 +0000 (11:58 +0200)
lib/mm/memlock.c
tools/command.c

index 38dd2ea920eafc51ba38dee60800faf6eb841480..33e8c2b9c21ba8864f486417618c183d1137aa07 100644 (file)
@@ -184,16 +184,16 @@ static void _allocate_memory(void)
 #else
 #define MALLINFO mallinfo
 #endif
-        /*
-         *  When a brk() fails due to fragmented address space (which sometimes
-         *  happens when we try to grab 8M or so), glibc will make a new
-         *  arena. In this arena, the rules for using “direct” mmap are relaxed,
-         *  circumventing the MAX_MMAPs and MMAP_THRESHOLD settings. We can,
-         *  however, detect when this happens with mallinfo() and try to co-opt
-         *  malloc into using MMAP as a MORECORE substitute instead of returning
-         *  MMAP'd memory directly. Since MMAP-as-MORECORE does not munmap the
-         *  memory on free(), this is good enough for our purposes.
-         */
+       /*
+        *  When a brk() fails due to fragmented address space (which sometimes
+        *  happens when we try to grab 8M or so), glibc will make a new
+        *  arena. In this arena, the rules for using "direct" mmap are relaxed,
+        *  circumventing the MAX_MMAPs and MMAP_THRESHOLD settings. We can,
+        *  however, detect when this happens with mallinfo() and try to co-opt
+        *  malloc into using MMAP as a MORECORE substitute instead of returning
+        *  MMAP'd memory directly. Since MMAP-as-MORECORE does not munmap the
+        *  memory on free(), this is good enough for our purposes.
+        */
        while (missing > 0) {
                struct MALLINFO inf = MALLINFO();
                hblks = inf.hblks;
index b72254db0490010bf762ec45bf8de0b8772f3ed9..21b58f103c1f025bc5c6dc9eafbbc0eb2345ed2a 100644 (file)
@@ -656,7 +656,7 @@ static void _add_oo_definition_line(const char *name, const char *line)
        oo = &_oo_lines[_oo_line_count++];
 
        if (!(oo->name = strdup(name))) {
-               log_error("Failer to duplicate name %s.", name);
+               log_error("Failed to duplicate name %s.", name);
                return; /* FIXME: return code */
        }
 
@@ -669,7 +669,7 @@ static void _add_oo_definition_line(const char *name, const char *line)
 
        start = strchr(line, ':') + 2;
        if (!(oo->line = strdup(start))) {
-               log_error("Failer to duplicate line %s.", start);
+               log_error("Filler to duplicate line %s.", start);
                return;
        }
 }
This page took 0.040965 seconds and 5 git commands to generate.