--- builtin-pack-objects.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) -- Dana L. How danahow@xxxxxxxxx +1 650 804 5991 cell
From c18f1bc9911f5b33fbf2f032c4eaae9ed1446a23 Mon Sep 17 00:00:00 2001 From: Dana How <how@xxxxxxxxxxxxxxxxxxxxxxx> Date: Thu, 5 Apr 2007 13:30:41 -0700 Subject: [PATCH 05/13] new file statics and struct fields for --pack-limit --- builtin-pack-objects.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c index 50246e1..7da06a8 100644 --- a/builtin-pack-objects.c +++ b/builtin-pack-objects.c @@ -29,6 +29,7 @@ struct object_entry { unsigned int depth; /* delta depth */ unsigned int delta_limit; /* base adjustment for in-pack delta */ unsigned int hash; /* name hint hash */ + char no_write; /* flag: written to previous pack OR too big */ enum object_type type; enum object_type in_pack_type; /* could be delta */ unsigned long delta_size; /* delta data size (uncompressed) */ @@ -68,7 +69,10 @@ static int allow_ofs_delta; static struct object_entry **sorted_by_sha, **sorted_by_type; static struct object_entry *objects; -static uint32_t nr_objects, nr_alloc, nr_result; +static struct object_entry **written_list; +static uint32_t nr_objects, nr_alloc, nr_result, nr_written, nr_skipped = 0; +static uint32_t offset_limit = 0; +static uint32_t blob_limit = 0; static const char *base_name; static unsigned char pack_file_sha1[20]; static int progress = 1; -- 1.5.1.rc2.18.g9c88-dirty