https://github.com/git/git
Revision b76b4cd4f1d822686374c5fdeb68ab0aac28bff1 authored by Junio C Hamano on 16 June 2015, 21:33:45 UTC, committed by Junio C Hamano on 16 June 2015, 21:33:45 UTC
Communication between the HTTP server and http_backend process can
lead to a dead-lock when relaying a large ref negotiation request.
Diagnose the situation better, and mitigate it by reading such a
request first into core (to a reasonable limit).

* jk/http-backend-deadlock:
  http-backend: spool ref negotiation requests to buffer
  t5551: factor out tag creation
  http-backend: fix die recursion with custom handler
2 parent s 070d276 + 636614f
Raw File
Tip revision: b76b4cd4f1d822686374c5fdeb68ab0aac28bff1 authored by Junio C Hamano on 16 June 2015, 21:33:45 UTC
Merge branch 'jk/http-backend-deadlock' into maint
Tip revision: b76b4cd
test-dump-split-index.c
#include "cache.h"
#include "split-index.h"
#include "ewah/ewok.h"

static void show_bit(size_t pos, void *data)
{
	printf(" %d", (int)pos);
}

int main(int ac, char **av)
{
	struct split_index *si;
	int i;

	do_read_index(&the_index, av[1], 1);
	printf("own %s\n", sha1_to_hex(the_index.sha1));
	si = the_index.split_index;
	if (!si) {
		printf("not a split index\n");
		return 0;
	}
	printf("base %s\n", sha1_to_hex(si->base_sha1));
	for (i = 0; i < the_index.cache_nr; i++) {
		struct cache_entry *ce = the_index.cache[i];
		printf("%06o %s %d\t%s\n", ce->ce_mode,
		       sha1_to_hex(ce->sha1), ce_stage(ce), ce->name);
	}
	printf("replacements:");
	ewah_each_bit(si->replace_bitmap, show_bit, NULL);
	printf("\ndeletions:");
	ewah_each_bit(si->delete_bitmap, show_bit, NULL);
	printf("\n");
	return 0;
}
back to top