Alternates and refs outside the current namespace are advertised as "have" lines. To this end, the object identifiers of alternates are collected in an array and repeated hashes are omitted before transmission. In contrast, refs outside the used namespace are currently converted into "have" lines and transmitted immediately, without checking for duplicate lines. This means that exactly the same "have" line might be transmitted several times. Optimize this by using a single pool to collect all object identifiers to be converted into "have" lines (including both alternates and refs outside the namespace) first and transmit them later, omitting any duplicates. Suggested-by: Junio C Hamano <gitster@xxxxxxxxx> Signed-off-by: Lukas Fleischer <lfleischer@xxxxxxx> --- This is based on pu. I am not sure whether we should also change the name of show_one_alternate_sha1() in this patch since it is now used to transmit refs outside the current namespace as well... builtin/receive-pack.c | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index f06f70a..548d4ce 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -217,23 +217,24 @@ static void show_ref(const char *path, const unsigned char *sha1) } static int show_ref_cb(const char *path_full, const struct object_id *oid, - int flag, void *unused) + int flag, void *data) { const char *path = strip_namespace(path_full); if (ref_is_hidden(path, path_full)) return 0; - /* - * Advertise refs outside our current namespace as ".have" - * refs, so that the client can use them to minimize data - * transfer but will otherwise ignore them. This happens to - * cover ".have" that are thrown in by add_one_alternate_ref() - * to mark histories that are complete in our alternates as - * well. - */ - if (!path) - path = ".have"; + if (!path) { + /* + * Advertise refs outside our current namespace as ".have" + * refs, so that the client can use them to minimize data + * transfer but will otherwise ignore them. + */ + struct sha1_array *sa = data; + sha1_array_append(sa, oid->hash); + return 0; + } + show_ref(path, oid->hash); return 0; } @@ -254,9 +255,9 @@ static void write_head_info(void) struct sha1_array sa = SHA1_ARRAY_INIT; for_each_alternate_ref(collect_one_alternate_ref, &sa); + for_each_ref(show_ref_cb, &sa); sha1_array_for_each_unique(&sa, show_one_alternate_sha1, NULL); sha1_array_clear(&sa); - for_each_ref(show_ref_cb, NULL); if (!sent_capabilities) show_ref("capabilities^{}", null_sha1); -- 2.6.2 -- 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