summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ff45715)
raw | patch | inline | side by side (parent: ff45715)
author | Nicolas Pitre <nico@cam.org> | |
Tue, 16 May 2006 20:29:14 +0000 (16:29 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 16 May 2006 20:35:46 +0000 (13:35 -0700) |
This provides a linear decrement on the penalty related to delta depth
instead of being an 1/x function. With this another 5% reduction is
observed on packs for both the GIT repo and the Linux kernel repo, as
well as fixing a pack size regression in another sample repo I have.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
instead of being an 1/x function. With this another 5% reduction is
observed on packs for both the GIT repo and the Linux kernel repo, as
well as fixing a pack size regression in another sample repo I have.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
pack-objects.c | patch | blob | history |
diff --git a/pack-objects.c b/pack-objects.c
index b430b02cf7f5b39c97bc090634ef26346a022ade..33751797fa33706f95f21011a523b021093e2e75 100644 (file)
--- a/pack-objects.c
+++ b/pack-objects.c
if (src_entry->depth >= max_depth)
return 0;
- /* Now some size filtering euristics. */
+ /* Now some size filtering heuristics. */
size = trg_entry->size;
- max_size = (size/2 - 20) / (src_entry->depth + 1);
+ max_size = size/2 - 20;
+ max_size = max_size * (max_depth - src_entry->depth) / max_depth;
+ if (max_size == 0)
+ return 0;
if (trg_entry->delta && trg_entry->delta_size <= max_size)
max_size = trg_entry->delta_size-1;
src_size = src_entry->size;