summaryrefslogtreecommitdiff
path: root/refs/refs-internal.h
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2017-09-25 08:00:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-09-25 09:02:46 (GMT)
commitba1c052fa616eb93a654375e8b9d59daa47c28a8 (patch)
tree6f68177a994cd8c597a604850193fe7bdf5913e9 /refs/refs-internal.h
parentf3987ab36d74382852c0db03ac25e58f83178225 (diff)
downloadgit-ba1c052fa616eb93a654375e8b9d59daa47c28a8.zip
git-ba1c052fa616eb93a654375e8b9d59daa47c28a8.tar.gz
git-ba1c052fa616eb93a654375e8b9d59daa47c28a8.tar.bz2
ref_store: implement `refs_peel_ref()` generically
We're about to stop storing packed refs in a `ref_cache`. That means that the only way we have left to optimize `peel_ref()` is by checking whether the reference being peeled is the one currently being iterated over (in `current_ref_iter`), and if so, using `ref_iterator_peel()`. But this can be done generically; it doesn't have to be implemented per-backend. So implement `refs_peel_ref()` in `refs.c` and remove the `peel_ref()` method from the refs API. This removes the last callers of a couple of functions, so delete them. More cleanup to come... Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/refs-internal.h')
-rw-r--r--refs/refs-internal.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/refs/refs-internal.h b/refs/refs-internal.h
index d7f233b..cc6c373 100644
--- a/refs/refs-internal.h
+++ b/refs/refs-internal.h
@@ -562,8 +562,6 @@ typedef int ref_transaction_commit_fn(struct ref_store *refs,
struct strbuf *err);
typedef int pack_refs_fn(struct ref_store *ref_store, unsigned int flags);
-typedef int peel_ref_fn(struct ref_store *ref_store,
- const char *refname, unsigned char *sha1);
typedef int create_symref_fn(struct ref_store *ref_store,
const char *ref_target,
const char *refs_heads_master,
@@ -668,7 +666,6 @@ struct ref_storage_be {
ref_transaction_commit_fn *initial_transaction_commit;
pack_refs_fn *pack_refs;
- peel_ref_fn *peel_ref;
create_symref_fn *create_symref;
delete_refs_fn *delete_refs;
rename_ref_fn *rename_ref;