summaryrefslogtreecommitdiff
path: root/builtin/index-pack.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'jk/index-pack-threading-races' into maintJunio C Hamano2014-09-291-2/+31
|\
| * index-pack: fix race condition with duplicate basesjk/index-pack-threading-racesJeff King2014-08-291-2/+31
* | Merge branch 'maint'Junio C Hamano2014-07-211-2/+1
|\ \
| * | use xcalloc() to allocate zero-initialized memoryRené Scharfe2014-07-211-2/+1
| * | Merge branch 'jk/commit-buffer-length' into maintJunio C Hamano2014-07-161-1/+2
| |\ \
* | \ \ Merge branch 'jk/strip-suffix'Junio C Hamano2014-07-161-15/+14
|\ \ \ \
| * | | | index-pack: use strip_suffix to avoid magic numbersJeff King2014-06-301-15/+14
| * | | | replace has_extension with ends_withJeff King2014-06-301-2/+2
| |/ / /
| * | | Merge branch 'ym/fix-opportunistic-index-update-race' into maintJunio C Hamano2014-06-251-1/+1
| |\ \ \
| * \ \ \ Merge branch 'jk/index-pack-report-missing' into maintJunio C Hamano2014-06-251-2/+7
| |\ \ \ \
| * \ \ \ \ Merge branch 'nd/index-pack-one-fd-per-thread' into maintJunio C Hamano2014-06-251-10/+17
| |\ \ \ \ \
* | \ \ \ \ \ Merge branch 'jk/commit-buffer-length'Junio C Hamano2014-07-021-1/+2
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | |
| * | | | | | commit: record buffer length in cacheJeff King2014-06-131-1/+1
| * | | | | | provide a helper to free commit bufferJeff King2014-06-131-1/+2
| |/ / / / /
* | | | | | Merge branch 'jk/index-pack-report-missing'Junio C Hamano2014-06-061-2/+7
|\ \ \ \ \ \ | | |_|/ / / | |/| | | |
| * | | | | index-pack: distinguish missing objects from type errorsjk/index-pack-report-missingJeff King2014-05-121-2/+7
| * | | | | Merge branch 'nd/index-pack-error-message' into maintJunio C Hamano2014-04-031-2/+2
| |\ \ \ \ \
* | \ \ \ \ \ Merge branch 'nd/index-pack-one-fd-per-thread'Junio C Hamano2014-06-031-10/+17
|\ \ \ \ \ \ \ | | |_|_|/ / / | |/| | | | |
| * | | | | | index-pack: work around thread-unsafe pread()nd/index-pack-one-fd-per-threadNguyễn Thái Ngọc Duy2014-04-161-10/+17
| |/ / / / /
* | | | | | Merge branch 'ym/fix-opportunistic-index-update-race'Junio C Hamano2014-06-031-1/+1
|\ \ \ \ \ \ | |_|_|/ / / |/| | | / / | | |_|/ / | |/| | |
| * | | | wrapper.c: add xpread() similar to xread()Yiannis Marangos2014-04-101-1/+1
| | |_|/ | |/| |
* | | | Merge branch 'nd/index-pack-error-message'Junio C Hamano2014-03-251-2/+2
|\ \ \ \ | | |_|/ | |/| |
| * | | index-pack: report error using the correct variablend/index-pack-error-messageJunio C Hamano2014-03-171-2/+2
| |/ /
* | | rename read_replace_refs to check_replace_refsMichael Haggerty2014-02-201-1/+1
| |/ |/|
* | replace {pre,suf}fixcmp() with {starts,ends}_with()cc/starts-n-ends-withChristian Couder2013-12-051-4/+4
|/
* Merge branch 'jk/free-tree-buffer'Junio C Hamano2013-09-171-0/+1
|\
| * clear parsed flag when we free tree buffersjk/free-tree-bufferJeff King2013-06-061-0/+1
* | clone: open a shortcut for connectivity checkNguyễn Thái Ngọc Duy2013-05-281-9/+26
* | index-pack: remove dead code (it should never happen)Nguyễn Thái Ngọc Duy2013-05-281-2/+1
|/
* Merge branch 'nd/index-pack-threaded-fixes'Junio C Hamano2013-04-011-8/+26
|\
| * index-pack: guard nr_resolved_deltas reads by lockThomas Rast2013-03-191-1/+3
| * index-pack: protect deepest_delta in multithread codeNguyễn Thái Ngọc Duy2013-03-191-7/+23
* | Merge branch 'jk/index-pack-correct-depth-fix'Junio C Hamano2013-04-011-0/+2
|\ \
| * | index-pack: always zero-initialize object_entry listJeff King2013-03-201-0/+2
| |/
* | index-pack: fix buffer overflow caused by translationsNguyễn Thái Ngọc Duy2013-03-161-4/+5
* | i18n: mark more index-pack strings for translationNguyễn Thái Ngọc Duy2012-08-311-10/+11
|/
* Merge branch 'jk/index-pack-streaming-fix'Junio C Hamano2012-07-151-10/+13
|\
| * index-pack: loop while inflating objects in unpack_dataJeff King2012-07-101-10/+13
* | Merge branch 'rj/platform-pread-may-be-thread-unsafe'Junio C Hamano2012-07-091-2/+2
|\ \ | |/ |/|
| * index-pack: Disable threading on cygwinJunio C Hamano2012-06-261-2/+2
* | index-pack: use streaming interface for collision test on large blobsNguyễn Thái Ngọc Duy2012-05-241-5/+77
* | index-pack: factor out unpack core from get_data_from_packNguyễn Thái Ngọc Duy2012-05-231-3/+24
* | index-pack: use streaming interface on large blobs (most of the time)Nguyễn Thái Ngọc Duy2012-05-231-8/+44
* | index-pack: hash non-delta objects while reading from streamNguyễn Thái Ngọc Duy2012-05-231-11/+30
|/
* Merge branch 'nd/threaded-index-pack'Junio C Hamano2012-05-141-66/+275
|\
| * index-pack: disable threading if NO_PREAD is definedNguyễn Thái Ngọc Duy2012-05-071-0/+5
| * index-pack: support multithreaded delta resolvingNguyễn Thái Ngọc Duy2012-05-071-11/+193
| * index-pack: restructure pack processing into three main functionsNguyễn Thái Ngọc Duy2012-05-071-53/+75
* | i18n: index-pack: mark strings for translationNguyễn Thái Ngọc Duy2012-04-241-57/+68
|/
* index-pack: eliminate unlimited recursion in get_base_data()Nguyễn Thái Ngọc Duy2012-01-161-9/+44