]> err.no Git - util-linux/commitdiff
mkfs.cramfs: lower memory requirements for layouts with duplicate files
authorRoy Peled <the.roy.peled@gmail.com>
Fri, 28 Nov 2008 14:57:00 +0000 (16:57 +0200)
committerKarel Zak <kzak@redhat.com>
Wed, 4 Feb 2009 14:08:20 +0000 (15:08 +0100)
mkfs.cramfs allocates memory based on a calculated upper-bound
of required filesystem size. If there are duplicate files
or hard links, the current implementation unnecessarily increases
the upper-bound per each copy of the file, even though cramfs does
not store copies of contents of identical files.

This patch improves the calculation of fslen_ub, the upper bound
of required filesystem size, by making the upper bound aware of
duplicate files.

This is very helpful for layouts that hold a lot of hard links,
which are seen as duplicate files by mkfs.cramfs. For example,
this drastically reduces the memory requirements for creating
a standard Busybox layout.

Signed-off-by: Roy Peled <the.roy.peled@gmail.com>
disk-utils/mkfs.cramfs.c

index 5ac2c5b9756f74348fdcac338c4f4c7ed975e2ef..fbb4327e581193730f6003b3bb4927641f7a512a 100644 (file)
@@ -247,7 +247,7 @@ identical_file(struct entry *e1, struct entry *e2){
  */
 #define MAX_INPUT_NAMELEN 255
 
-static int find_identical_file(struct entry *orig, struct entry *new)
+static int find_identical_file(struct entry *orig, struct entry *new, loff_t *fslen_ub)
 {
         if (orig == new)
                return 1;
@@ -264,19 +264,20 @@ static int find_identical_file(struct entry *orig, struct entry *new)
                    !memcmp(orig->md5sum, new->md5sum, 16) &&
                    identical_file(orig, new)) {
                        new->same = orig;
+                       *fslen_ub -= new->size;
                        return 1;
                }
         }
-        return find_identical_file(orig->child, new) ||
-                   find_identical_file(orig->next, new);
+        return find_identical_file(orig->child, new, fslen_ub) ||
+                   find_identical_file(orig->next, new, fslen_ub);
 }
 
-static void eliminate_doubles(struct entry *root, struct entry *orig) {
+static void eliminate_doubles(struct entry *root, struct entry *orig, loff_t *fslen_ub) {
         if (orig) {
                 if (orig->size && orig->path)
-                       find_identical_file(root,orig);
-                eliminate_doubles(root,orig->child);
-                eliminate_doubles(root,orig->next);
+                       find_identical_file(root,orig, fslen_ub);
+                eliminate_doubles(root,orig->child, fslen_ub);
+                eliminate_doubles(root,orig->next, fslen_ub);
         }
 }
 
@@ -859,7 +860,7 @@ int main(int argc, char **argv)
        }
 
         /* find duplicate files */
-        eliminate_doubles(root_entry,root_entry);
+        eliminate_doubles(root_entry,root_entry, &fslen_ub);
 
        /* TODO: Why do we use a private/anonymous mapping here
            followed by a write below, instead of just a shared mapping