On Thu, Dec 07, 2023 at 02:13:24PM +0100, Patrick Steinhardt wrote: > > In order to compute this value correctly, we need to know not only where > > we are in the packfile we're assembling (with `hashfile_total(f)`) but > > also the position of the first byte of the packfile that we are > > currently reusing. > > > > Together, these two allow us to compute the reused chunk's offset > > difference relative to the start of the reused pack, as desired. > > Hm. I'm not quite sure I fully understand the motivation here. Is this > something that was broken all along? Why does it become a problem now? > Sorry if I'm missing the obvious here. No worries, I should have explained this better. Indeed we do have to worry about patching deltas today when reusing objects from a pack. But we have to extend the implementation in order to perform reuse over multiple packs when any of them (excluding the first, which would work with the existing logic) have delta/base pairs on either side of a gap. I'll try to make it a little clearer, thanks for pointing that out. > > @@ -1126,10 +1129,12 @@ static void write_reused_pack(struct packed_git *reuse_packfile, > > { > > size_t i = 0; > > uint32_t offset; > > + off_t pack_start = hashfile_total(f) - sizeof(struct pack_header); > > Given that this patch in its current state doesn't seem to do anything > yet, am I right in assuming that `hashfile_total(f) - sizeof(struct > pack_header)` is always expected to be zero for now? Yep, that's right. Thanks, Taylor