On Fri, Aug 11, 2023 at 02:48:06PM -0700, Jonathan Tan wrote: > Taylor Blau <me@xxxxxxxxxxxx> writes: > > diff --git a/bloom.h b/bloom.h > > index 330a140520..2b1c124bb5 100644 > > --- a/bloom.h > > +++ b/bloom.h > > @@ -110,8 +110,24 @@ struct bloom_filter *get_or_compute_bloom_filter(struct repository *r, > > const struct bloom_filter_settings *settings, > > enum bloom_filter_computed *computed); > > > > -#define get_bloom_filter(r, c) get_or_compute_bloom_filter( \ > > - (r), (c), 0, NULL, NULL) > > +/* > > + * Find the Bloom filter associated with the given commit "c". > > + * > > + * If any of the following are true > > + * > > + * - the repository does not have a commit-graph > > + * - it has a commit-graph, but reading the commit-graph is disabled > > + * - the given commit does not have a Bloom filter computed > > + * - there is a Bloom filter for commit "c", but it cannot be read because > > + * disabled > > s/disabled/version incompatibility/, I think. Well spotted, thanks. Thanks, Taylor