[PATCH v2 2/7] invalidate_ref_cache(): take the submodule as parameter
From: Michael Haggerty <hidden>
Date: 2016-06-15 22:52:13
Subsystem:
the rest · Maintainer:
Linus Torvalds
Instead of invalidating the ref cache on an all-or-nothing basis, allow the cache for individual submodules to be invalidated. Signed-off-by: Michael Haggerty <redacted> --- refs.c | 12 ++++-------- 1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/refs.c b/refs.c
index 56e4254..89b2a0e 100644
--- a/refs.c
+++ b/refs.c@@ -223,13 +223,9 @@ static struct cached_refs *get_cached_refs(const char *submodule) return refs; } -static void invalidate_ref_cache(void) +static void invalidate_ref_cache(const char *submodule) { - struct cached_refs *refs = cached_refs; - while (refs) { - clear_cached_refs(refs); - refs = refs->next; - } + clear_cached_refs(get_cached_refs(submodule)); } static struct ref_list *read_packed_refs(FILE *f)
@@ -1212,7 +1208,7 @@ int delete_ref(const char *refname, const unsigned char *sha1, int delopt) ret |= repack_without_ref(refname); unlink_or_warn(git_path("logs/%s", lock->ref_name)); - invalidate_ref_cache(); + invalidate_ref_cache(NULL); unlock_ref(lock); return ret; }
@@ -1511,7 +1507,7 @@ int write_ref_sha1(struct ref_lock *lock, unlock_ref(lock); return -1; } - invalidate_ref_cache(); + invalidate_ref_cache(NULL); if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 || (strcmp(lock->ref_name, lock->orig_ref_name) && log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
--
1.7.7.rc2