Previously the old error message just told the user that it was not possible to delete the ref from the packed-refs file. Give instructions on how to resolve the problem. Signed-off-by: Miklos Vajna <vmiklos@xxxxxxxxxxxxxx> --- Changes since the previous one: * unable_to_lock_index() renamed to unable_to_lock() * NORETURN is back for unable_to_lock_index_die() cache.h | 1 + lockfile.c | 23 ++++++++++++++++++----- refs.c | 4 +++- 3 files changed, 22 insertions(+), 6 deletions(-) diff --git a/cache.h b/cache.h index 1a6412d..797cc4c 100644 --- a/cache.h +++ b/cache.h @@ -489,6 +489,7 @@ struct lock_file { }; #define LOCK_DIE_ON_ERROR 1 #define LOCK_NODEREF 2 +extern int unable_to_lock(const char *path, int err, int noreturn); extern NORETURN void unable_to_lock_index_die(const char *path, int err); extern int hold_lock_file_for_update(struct lock_file *, const char *path, int); extern int hold_lock_file_for_append(struct lock_file *, const char *path, int); diff --git a/lockfile.c b/lockfile.c index eb931ed..3bacda4 100644 --- a/lockfile.c +++ b/lockfile.c @@ -156,17 +156,30 @@ static int lock_file(struct lock_file *lk, const char *path, int flags) } -NORETURN void unable_to_lock_index_die(const char *path, int err) +int unable_to_lock(const char *path, int err, int noreturn) { + struct strbuf buf = STRBUF_INIT; + int ret; + if (err == EEXIST) { - die("Unable to create '%s.lock': %s.\n\n" + strbuf_addf(&buf, "Unable to create '%s.lock': %s.\n\n" "If no other git process is currently running, this probably means a\n" "git process crashed in this repository earlier. Make sure no other git\n" "process is running and remove the file manually to continue.", path, strerror(err)); - } else { - die("Unable to create '%s.lock': %s", path, strerror(err)); - } + } else + strbuf_addf(&buf, "Unable to create '%s.lock': %s", path, strerror(err)); + if (noreturn) + die(buf.buf); + ret = error(buf.buf); + strbuf_release(&buf); + return ret; +} + +NORETURN void unable_to_lock_index_die(const char *path, int err) +{ + unable_to_lock(path, err, 1); + die("unable_to_lock() should have died already"); } int hold_lock_file_for_update(struct lock_file *lk, const char *path, int flags) diff --git a/refs.c b/refs.c index 24865cf..3d635ae 100644 --- a/refs.c +++ b/refs.c @@ -972,8 +972,10 @@ static int repack_without_ref(const char *refname) if (!found) return 0; fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0); - if (fd < 0) + if (fd < 0) { + unable_to_lock(git_path("packed-refs"), errno, 0); return error("cannot delete '%s' from packed refs", refname); + } for (list = packed_ref_list; list; list = list->next) { char line[PATH_MAX + 100]; -- 1.6.5.rc1.44.ga1675.dirty -- To unsubscribe from this list: 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