summaryrefslogtreecommitdiff
path: root/builtin/gc.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-07-18 19:48:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-07-18 19:48:10 (GMT)
commit764046f6b0ea8480ef7f79dd2b9c48cab0c32d22 (patch)
tree93ed2ebca9705953bfee7f6238c93463893a880a /builtin/gc.c
parent11157492230874c0c2f36481e75f08406c4ed6e7 (diff)
parentc45af94dbc960cbb46ac482ec9cb7f73f55ea270 (diff)
downloadgit-764046f6b0ea8480ef7f79dd2b9c48cab0c32d22.zip
git-764046f6b0ea8480ef7f79dd2b9c48cab0c32d22.tar.gz
git-764046f6b0ea8480ef7f79dd2b9c48cab0c32d22.tar.bz2
Merge branch 'jk/gc-pre-detach-under-hook'
We run an early part of "git gc" that deals with refs before daemonising (and not under lock) even when running a background auto-gc, which caused multiple gc processes attempting to run the early part at the same time. This is now prevented by running the early part also under the GC lock. * jk/gc-pre-detach-under-hook: gc: run pre-detach operations under lock
Diffstat (limited to 'builtin/gc.c')
-rw-r--r--builtin/gc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin/gc.c b/builtin/gc.c
index 2ba50a2..e6b8447 100644
--- a/builtin/gc.c
+++ b/builtin/gc.c
@@ -414,8 +414,12 @@ int cmd_gc(int argc, const char **argv, const char *prefix)
if (report_last_gc_error())
return -1;
+ if (lock_repo_for_gc(force, &pid))
+ return 0;
if (gc_before_repack())
return -1;
+ delete_tempfile(&pidfile);
+
/*
* failure to daemonize is ok, we'll continue
* in foreground