Nicolas Pitre <nico@xxxxxxx> writes: > On Thu, 20 Apr 2006, Shawn Pearce wrote: > >> The more that I think about it the more it seems possible that the >> pathname hashing is what may be causing the problem. Not only did >> bisect point to 1d6b38cc76c348e2477506ca9759fc241e3d0d46 but the >> directory which contains the bulk of the space has many files with >> the same name located in different directories: > [...] > > But the bad commit according to your bisection talks about "thin" packs > which are not involved in your case. So something looks fishy with that > commit which should not have touched path hashing in the non-thin pack > case... I think... I think this explains it. The new code hashes full-path, but places bins for the paths with the same basename next to each other, so before Makefile and doc/Makefile and t/Makefile were all in the same bin, but now they are in three different bins next to each other. I originally thought, with one single notable exception of Makefile, having the identically named file in many different directories is not common nor sane, and the new code favors to delta with the exact same path for deeper history over wasting delta window for making delta with objects with the same name in different places in more recent history. I think I benched this with kernel repository (git.git was too small for that). But I suspect we have a built-in "we sort bigger to smaller, and we cut off when we switch bins" somewhere in find_delta() loop, which I do not recall touching when I did that change, so that may be interfering and preventing 0-11-AdjLite.deg from all over the place to delta against each other. - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html