diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-10-12 13:51:45 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-12 13:51:45 -0700 |
commit | 79c887d29d8cd780ab19b844b031884840f25a02 (patch) | |
tree | 189ecf20b78db2ced6ed28493fc266720c36b041 | |
parent | Merge branch 'jc/trivial-threeway-binary-merge' into maint (diff) | |
parent | pack-write: skip *.rev work when not writing *.rev (diff) | |
download | tgif-79c887d29d8cd780ab19b844b031884840f25a02.tar.xz |
Merge branch 'ab/reverse-midx-optim' into maint
The code that optionally creates the *.rev reverse index file has
been optimized to avoid needless computation when it is not writing
the file out.
* ab/reverse-midx-optim:
pack-write: skip *.rev work when not writing *.rev
-rw-r--r-- | pack-write.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pack-write.c b/pack-write.c index 2767b78619..067054f097 100644 --- a/pack-write.c +++ b/pack-write.c @@ -222,6 +222,9 @@ const char *write_rev_file(const char *rev_name, uint32_t i; const char *ret; + if (!(flags & WRITE_REV) && !(flags & WRITE_REV_VERIFY)) + return NULL; + ALLOC_ARRAY(pack_order, nr_objects); for (i = 0; i < nr_objects; i++) pack_order[i] = i; |