Message ID | cover.1607385833.git.me@ttaylorr.com (mailing list archive) |
---|---|
Headers | show |
Series | pack-bitmap: bitmap generation improvements | expand |
Taylor Blau <me@ttaylorr.com> writes: > Here's an updated v3 of mine, Stolee, and Peff's series to improve the > CPU performance of generating reachability bitmaps. Has the "avoid having to assume the default branch name is 'master', by naming the initial branch we create our history to use in testing 'second'" fix-up by Dscho, which has been queued in 'seen' on top of the previous round of this topic, incorporated to this round? I think [4/24] and [15/24] can be adjusted by adding this piece from Dscho to the set-up procedure and ... @@ -64,6 +64,7 @@ has_any () { test_expect_success 'setup repo with moderate-sized history' ' test_commit_bulk --id=file 10 && + git branch -M second && git checkout -b other HEAD~5 && test_commit_bulk --id=side 10 && ... fixing the remainder of the test script by adjusting for the fallout from the 'master' that is now called 'second'. Thanks.
On Tue, Dec 08, 2020 at 12:56:05PM -0800, Junio C Hamano wrote: > Taylor Blau <me@ttaylorr.com> writes: > > > Here's an updated v3 of mine, Stolee, and Peff's series to improve the > > CPU performance of generating reachability bitmaps. > > Has the "avoid having to assume the default branch name is 'master', > by naming the initial branch we create our history to use in testing > 'second'" fix-up by Dscho, which has been queued in 'seen' on top of > the previous round of this topic, incorporated to this round? Unfortunately, no. I wrote you an email a little earlier today, but it's possible that our emails may have crossed (vger seems to be rather slow today...). > I think [4/24] and [15/24] can be adjusted by adding this piece from > Dscho to the set-up procedure and ... > > @@ -64,6 +64,7 @@ has_any () { > > test_expect_success 'setup repo with moderate-sized history' ' > test_commit_bulk --id=file 10 && > + git branch -M second && > git checkout -b other HEAD~5 && > test_commit_bulk --id=side 10 && > > ... fixing the remainder of the test script by adjusting for the > fallout from the 'master' that is now called 'second'. That seems reasonable. Another approach would be to leave these patches untouched and apply Dscho's fixup on the end, but I'm not sure which you'd prefer. If the latter, then I think you have everything you need. If the former, would you like a re-submission of this series? Either is fine with me. > Thanks. Thanks, Taylor
Taylor Blau <me@ttaylorr.com> writes: > That seems reasonable. Another approach would be to leave these patches > untouched and apply Dscho's fixup on the end, but I'm not sure which > you'd prefer. I'd prefer not to see known breakages that are found before the topic is not yet in 'next' left in the topic, and fix them at the source before the topic gets merged.