]> git.ipfire.org Git - thirdparty/git.git/commitdiff
p5332: drop "+" from --stdin-packs input
authorJeff King <peff@peff.net>
Tue, 22 Apr 2025 11:16:32 +0000 (07:16 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 22 Apr 2025 18:08:24 +0000 (11:08 -0700)
This perf script creates a midx by running "git multi-pack-index write"
with the "--stdin-packs" option. We feed that stdin by running "find" on
.git/objects/pack, using sed to strip off everything but the basename.

But that sed invocation also does something peculiar: it adds a "+" to
the start of each pack name. This causes the multi-pack-index command to
barf. The modified name does not match any pack it knows about, so it
ends up with an empty list of packs to put in the midx. And thus nothing
matches the --preferred-pack option we pass, which causes it die().

The fix is to remove the extra "+" (which also lets us simplify the sed
invocation a bit, as it is now just stripping the leading directories).

But that leaves the mystery of why it was ever there in the first place.
The answer is that an earlier iteration of the patch series had a
concept of "disjoint" packs in the midx. And one of its patches here:

  https://lore.kernel.org/git/c52d7e7b27a9add4f58b8334db4fe4498af1c90f.1701198172.git.me@ttaylorr.com/

taught read_packs_from_stdin() to treat a leading "+" as marking a
disjoint pack. But in the second version of the series, which was
ultimately merged, that disjoint concept went away, and the code to
parse "+" did likewise. The regular regression tests were adjusted to
match, but this case in t/perf was forgotten.

Signed-off-by: Jeff King <peff@peff.net>
Acked-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/p5332-multi-pack-reuse.sh

index 5c6c575d62c64b178118bd5993df3ec9de5d1956..9526ba7c3187063a32f452c21b83d0cb80804248 100755 (executable)
@@ -58,7 +58,7 @@ do
        '
 
        test_expect_success "setup bitmaps for $nr_packs-pack scenario" '
-               find $packdir -type f -name "*.idx" | sed -e "s/.*\/\(.*\)$/+\1/g" |
+               find $packdir -type f -name "*.idx" | sed -e "s/.*\///" |
                git multi-pack-index write --stdin-packs --bitmap \
                        --preferred-pack="$(find_pack $(git rev-parse HEAD))"
        '