Re: [PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-16 Thread Jeff King
On Wed, Sep 16, 2015 at 03:14:24PM -0400, Eric Sunshine wrote: > On Wed, Sep 16, 2015 at 3:12 PM, Junio C Hamano wrote: > > Jeff King writes: > > > >> Speaking of which, how do you want the next round of patches? I'm > >> hesitant to spam the list with 67 patches again, when only a fraction > >>

Re: [PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-16 Thread Eric Sunshine
On Wed, Sep 16, 2015 at 3:12 PM, Junio C Hamano wrote: > Jeff King writes: > >> Speaking of which, how do you want the next round of patches? I'm >> hesitant to spam the list with 67 patches again, when only a fraction >> have changed (and for all but the _to/_r thing, I've posted my changes >> a

Re: [PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-16 Thread Junio C Hamano
Jeff King writes: > Speaking of which, how do you want the next round of patches? I'm > hesitant to spam the list with 67 patches again, when only a fraction > have changed (and for all but the _to/_r thing, I've posted my changes > already). Cannot tell yet, as I am only halfway thru myself. I

Re: [PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-16 Thread Jeff King
On Wed, Sep 16, 2015 at 11:04:49AM -0700, Junio C Hamano wrote: > Johannes Schindelin writes: > > > Hi Peff, > > > > On 2015-09-15 17:24, Jeff King wrote: > >> Commit 02976bf (fsck: introduce `git fsck --connectivity-only`, > >> 2015-06-22) recently gave fsck an option to perform only a > >> sub

Re: [PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-16 Thread Junio C Hamano
Johannes Schindelin writes: > Hi Peff, > > On 2015-09-15 17:24, Jeff King wrote: >> Commit 02976bf (fsck: introduce `git fsck --connectivity-only`, >> 2015-06-22) recently gave fsck an option to perform only a >> subset of the checks, by skipping the fsck_object_dir() >> call. However, it does so

Re: [PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-15 Thread Johannes Schindelin
Hi Peff, On 2015-09-15 17:24, Jeff King wrote: > Commit 02976bf (fsck: introduce `git fsck --connectivity-only`, > 2015-06-22) recently gave fsck an option to perform only a > subset of the checks, by skipping the fsck_object_dir() > call. However, it does so only for the local object > directory,

[PATCH 04/67] fsck: don't fsck alternates for connectivity-only check

2015-09-15 Thread Jeff King
Commit 02976bf (fsck: introduce `git fsck --connectivity-only`, 2015-06-22) recently gave fsck an option to perform only a subset of the checks, by skipping the fsck_object_dir() call. However, it does so only for the local object directory, and we still do expensive checks on any alternate repos.