summaryrefslogtreecommitdiff
path: root/promisor-remote.h
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2020-04-02 19:19:16 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-04-02 19:42:32 (GMT)
commitdb7ed7418b3702ab2b2df755764c3f452917a890 (patch)
tree888b61c185e11fff9b51fec37f8d4ff6c88a8dc1 /promisor-remote.h
parent274b9cc25322d9ee79aa8e6d4e86f0ffe5ced925 (diff)
downloadgit-db7ed7418b3702ab2b2df755764c3f452917a890.zip
git-db7ed7418b3702ab2b2df755764c3f452917a890.tar.gz
git-db7ed7418b3702ab2b2df755764c3f452917a890.tar.bz2
promisor-remote: accept 0 as oid_nr in function
There are 3 callers to promisor_remote_get_direct() that first check if the number of objects to be fetched is equal to 0. Fold that check into promisor_remote_get_direct(), and in doing so, be explicit as to what promisor_remote_get_direct() does if oid_nr is 0 (it returns 0, success, immediately). Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'promisor-remote.h')
-rw-r--r--promisor-remote.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/promisor-remote.h b/promisor-remote.h
index 737bac3..6343c47 100644
--- a/promisor-remote.h
+++ b/promisor-remote.h
@@ -20,6 +20,14 @@ struct promisor_remote {
void promisor_remote_reinit(void);
struct promisor_remote *promisor_remote_find(const char *remote_name);
int has_promisor_remote(void);
+
+/*
+ * Fetches all requested objects from all promisor remotes, trying them one at
+ * a time until all objects are fetched. Returns 0 upon success, and non-zero
+ * otherwise.
+ *
+ * If oid_nr is 0, this function returns 0 (success) immediately.
+ */
int promisor_remote_get_direct(struct repository *repo,
const struct object_id *oids,
int oid_nr);