summaryrefslogtreecommitdiff
path: root/midx.c
AgeCommit message (Expand)AuthorFilesLines
2025-09-24packfile: move `get_multi_pack_index()` into "midx.c"Patrick Steinhardt1-0/+6
2025-09-24packfile: introduce function to load and add packfilesPatrick Steinhardt1-19/+4
2025-09-24packfile: refactor `install_packed_git()` to work on packfile storePatrick Steinhardt1-1/+1
2025-09-24odb: move MRU list of packfiles into `struct packfile_store`Patrick Steinhardt1-1/+1
2025-09-24odb: move packfile map into `struct packfile_store`Patrick Steinhardt1-1/+1
2025-08-11midx: compute paths via their sourcePatrick Steinhardt1-29/+25
2025-08-11midx: stop duplicating info redundant with its owning sourcePatrick Steinhardt1-10/+11
2025-08-11midx: load multi-pack indices via their sourcePatrick Steinhardt1-32/+25
2025-08-11midx: drop redundant `struct repository` parameterPatrick Steinhardt1-9/+9
2025-08-11odb: store locality in object database sourcesPatrick Steinhardt1-2/+3
2025-07-15midx: remove now-unused linked list of multi-pack indicesPatrick Steinhardt1-16/+2
2025-07-15midx: stop using linked list when closing MIDXPatrick Steinhardt1-5/+8
2025-07-15midx: start tracking per object database sourcePatrick Steinhardt1-8/+11
2025-07-01object-store: rename `object_directory` to `odb_source`Patrick Steinhardt1-3/+3
2025-05-28midx: stop repeatedly looking up nonexistent packfilesPatrick Steinhardt1-2/+10
2025-04-15object-file: move `git_open_cloexec()` to "compat/open.c"Patrick Steinhardt1-1/+0
2025-03-10csum-file: stop depending on `the_repository`Patrick Steinhardt1-1/+2
2024-12-18progress: stop using `the_repository`Patrick Steinhardt1-4/+9
2024-12-18Merge branch 'ps/build-sign-compare' into ps/the-repositoryJunio C Hamano1-0/+2
2024-12-06global: mark code units that generate warnings with `-Wsign-compare`Patrick Steinhardt1-0/+1
2024-12-04midx: inline the `MIDX_MIN_SIZE` definitionKarthik Nayak1-5/+1
2024-12-04midx: pass down `hash_algo` to functions using global variablesKarthik Nayak1-11/+15
2024-12-04midx: pass `repository` to `load_multi_pack_index`Karthik Nayak1-5/+6
2024-12-04midx: cleanup internal usage of `the_repository` and `the_hash_algo`Karthik Nayak1-22/+27
2024-12-04midx: add repository to `multi_pack_index` structKarthik Nayak1-0/+1
2024-12-04packfile: add repository to struct `packed_git`Karthik Nayak1-1/+1
2024-10-25packfile: use object_id in find_pack_entry_one()Jeff King1-1/+1
2024-10-25midx: avoid duplicate packed_git entriesJeff King1-3/+17
2024-08-27pack-bitmap: tag bitmapped packs with their corresponding MIDXTaylor Blau1-0/+1
2024-08-13midx: drop unused parameters from add_midx_to_chain()Jeff King1-9/+5
2024-08-06midx: implement support for writing incremental MIDX chainsTaylor Blau1-11/+51
2024-08-06midx: implement verification support for incremental MIDXsTaylor Blau1-17/+30
2024-08-06midx: support reading incremental MIDX chainsTaylor Blau1-10/+174
2024-08-06midx: teach `midx_preferred_pack()` about incremental MIDXsTaylor Blau1-2/+5
2024-08-06midx: teach `midx_contains_pack()` about incremental MIDXsTaylor Blau1-1/+10
2024-08-06midx: remove unused `midx_locate_pack()`Taylor Blau1-11/+2
2024-08-06midx: teach `fill_midx_entry()` about incremental MIDXsTaylor Blau1-4/+2
2024-08-06midx: teach `nth_midxed_offset()` about incremental MIDXsTaylor Blau1-0/+2
2024-08-06midx: teach `bsearch_midx()` about incremental MIDXsTaylor Blau1-1/+4
2024-08-06midx: introduce `bsearch_one_midx()`Taylor Blau1-3/+14
2024-08-06midx: teach `nth_bitmapped_pack()` about incremental MIDXsTaylor Blau1-3/+5
2024-08-06midx: teach `nth_midxed_object_oid()` about incremental MIDXsTaylor Blau1-1/+3
2024-08-06midx: teach `prepare_midx_pack()` about incremental MIDXsTaylor Blau1-4/+22
2024-08-06midx: teach `nth_midxed_pack_int_id()` about incremental MIDXsTaylor Blau1-2/+21
2024-06-14global: introduce `USE_THE_REPOSITORY_VARIABLE` macroPatrick Steinhardt1-0/+2
2024-06-14hash: require hash algorithm in `oidread()` and `oidclr()`Patrick Steinhardt1-1/+2
2024-05-30midx: replace `get_midx_rev_filename()` with a generic helperTaylor Blau1-4/+6
2024-04-23Merge branch 'ps/missing-btmp-fix'Junio C Hamano1-3/+4
2024-04-15pack-bitmap: gracefully handle missing BTMP chunksPatrick Steinhardt1-3/+4
2024-04-01midx-write: move writing-related functions from midx.cTaylor Blau1-1539/+14