diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-10 15:32:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-10 15:32:26 -0800 |
commit | 9b27ea95189b1f276c9f7e10df81fa1476a4ad4d (patch) | |
tree | 8116ae20f73dc9596be6be72628012b699680056 /sha1_file.c | |
parent | 7e1100e9e939c9178b2aa3969349e9e8d34488bf (diff) | |
parent | 3d20c636af05c44a6ff4df9309c2bca108ee149b (diff) | |
download | git-9b27ea95189b1f276c9f7e10df81fa1476a4ad4d.tar.gz |
Merge branch 'maint-1.6.0' into maint
* maint-1.6.0:
Clear the delta base cache during fast-import checkpoint
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sha1_file.c b/sha1_file.c index ced33e837b..d64f28f8ca 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1663,6 +1663,13 @@ static inline void release_delta_base_cache(struct delta_base_cache_entry *ent) } } +void clear_delta_base_cache(void) +{ + unsigned long p; + for (p = 0; p < MAX_DELTA_CACHE; p++) + release_delta_base_cache(&delta_base_cache[p]); +} + static void add_delta_base_cache(struct packed_git *p, off_t base_offset, void *base, unsigned long base_size, enum object_type type) { |