Merge branch 'gc/config-context'
Reduce reliance on a global state in the config reading API. * gc/config-context: config: pass source to config_parser_event_fn_t config: add kvi.path, use it to evaluate includes config.c: remove config_reader from configsets config: pass kvi to die_bad_number() trace2: plumb config kvi config.c: pass ctx with CLI config config: pass ctx with config files config.c: pass ctx in configsets config: add ctx arg to config_fn_t urlmatch.h: use config_fn_t type config: inline git_color_default_config
This commit is contained in:
@ -3135,26 +3135,27 @@ static void prepare_pack(int window, int depth)
|
||||
free(delta_list);
|
||||
}
|
||||
|
||||
static int git_pack_config(const char *k, const char *v, void *cb)
|
||||
static int git_pack_config(const char *k, const char *v,
|
||||
const struct config_context *ctx, void *cb)
|
||||
{
|
||||
if (!strcmp(k, "pack.window")) {
|
||||
window = git_config_int(k, v);
|
||||
window = git_config_int(k, v, ctx->kvi);
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.windowmemory")) {
|
||||
window_memory_limit = git_config_ulong(k, v);
|
||||
window_memory_limit = git_config_ulong(k, v, ctx->kvi);
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.depth")) {
|
||||
depth = git_config_int(k, v);
|
||||
depth = git_config_int(k, v, ctx->kvi);
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.deltacachesize")) {
|
||||
max_delta_cache_size = git_config_int(k, v);
|
||||
max_delta_cache_size = git_config_int(k, v, ctx->kvi);
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.deltacachelimit")) {
|
||||
cache_max_small_delta_size = git_config_int(k, v);
|
||||
cache_max_small_delta_size = git_config_int(k, v, ctx->kvi);
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.writebitmaphashcache")) {
|
||||
@ -3180,7 +3181,7 @@ static int git_pack_config(const char *k, const char *v, void *cb)
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.threads")) {
|
||||
delta_search_threads = git_config_int(k, v);
|
||||
delta_search_threads = git_config_int(k, v, ctx->kvi);
|
||||
if (delta_search_threads < 0)
|
||||
die(_("invalid number of threads specified (%d)"),
|
||||
delta_search_threads);
|
||||
@ -3191,7 +3192,7 @@ static int git_pack_config(const char *k, const char *v, void *cb)
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(k, "pack.indexversion")) {
|
||||
pack_idx_opts.version = git_config_int(k, v);
|
||||
pack_idx_opts.version = git_config_int(k, v, ctx->kvi);
|
||||
if (pack_idx_opts.version > 2)
|
||||
die(_("bad pack.indexVersion=%"PRIu32),
|
||||
pack_idx_opts.version);
|
||||
@ -3227,7 +3228,7 @@ static int git_pack_config(const char *k, const char *v, void *cb)
|
||||
ex->uri = xstrdup(pack_end + 1);
|
||||
oidmap_put(&configured_exclusions, ex);
|
||||
}
|
||||
return git_default_config(k, v, cb);
|
||||
return git_default_config(k, v, ctx, cb);
|
||||
}
|
||||
|
||||
/* Counters for trace2 output when in --stdin-packs mode. */
|
||||
|
Reference in New Issue
Block a user