summaryrefslogtreecommitdiffstats
path: root/packfile.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-10-16packfile: rename `packfile_store_get_all_packs()`Patrick Steinhardt1-1/+1
2025-10-16packfile: introduce macro to iterate through packsPatrick Steinhardt1-2/+2
2025-10-16packfile: drop `packfile_store_get_packs()`Patrick Steinhardt1-6/+0
2025-09-24packfile: refactor `get_packed_git_mru()` to work on packfile storePatrick Steinhardt1-3/+3
2025-09-24packfile: refactor `get_all_packs()` to work on packfile storePatrick Steinhardt1-6/+6
2025-09-24packfile: refactor `get_packed_git()` to work on packfile storePatrick Steinhardt1-3/+3
2025-09-24packfile: move `get_multi_pack_index()` into "midx.c"Patrick Steinhardt1-7/+1
2025-09-24packfile: introduce function to load and add packfilesPatrick Steinhardt1-13/+31
2025-09-24packfile: refactor `install_packed_git()` to work on packfile storePatrick Steinhardt1-5/+6
2025-09-24packfile: split up responsibilities of `reprepare_packed_git()`Patrick Steinhardt1-22/+4
2025-09-24packfile: refactor `prepare_packed_git()` to work on packfile storePatrick Steinhardt1-23/+18
2025-09-24packfile: reorder functions to avoid function declarationPatrick Steinhardt1-34/+33
2025-09-24odb: move kept cache into `struct packfile_store`Patrick Steinhardt1-8/+8
2025-09-24odb: move MRU list of packfiles into `struct packfile_store`Patrick Steinhardt1-5/+6
2025-09-24odb: move packfile map into `struct packfile_store`Patrick Steinhardt1-2/+18
2025-09-24odb: move initialization bit into `struct packfile_store`Patrick Steinhardt1-3/+3
2025-09-24odb: move list of packfiles into `struct packfile_store`Patrick Steinhardt1-17/+25
2025-09-24packfile: introduce a new `struct packfile_store`Patrick Steinhardt1-0/+13
2025-08-11midx: drop redundant `struct repository` parameterPatrick Steinhardt1-2/+2
2025-08-11odb: store locality in object database sourcesPatrick Steinhardt1-5/+4
2025-07-15midx: remove now-unused linked list of multi-pack indicesPatrick Steinhardt1-1/+0
2025-07-15packfile: stop using linked MIDX list in `get_all_packs()`Patrick Steinhardt1-5/+6
2025-07-15packfile: stop using linked MIDX list in `find_pack_entry()`Patrick Steinhardt1-6/+5
2025-07-15packfile: refactor `get_multi_pack_index()` to work on sourcesPatrick Steinhardt1-19/+12
2025-07-15midx: stop using linked list when closing MIDXPatrick Steinhardt1-5/+6
2025-07-15packfile: refactor `prepare_packed_git_one()` to work on sourcesPatrick Steinhardt1-14/+9
2025-07-15midx: start tracking per object database sourcePatrick Steinhardt1-1/+3
2025-07-01odb: rename `oid_object_info()`Patrick Steinhardt1-2/+3
2025-07-01odb: get rid of `the_repository` when handling alternatesPatrick Steinhardt1-2/+2
2025-07-01object-store: rename files to "odb.{c,h}"Patrick Steinhardt1-1/+1
2025-07-01object-store: rename `object_directory` to `odb_source`Patrick Steinhardt1-8/+8
2025-07-01object-store: rename `raw_object_store` to `object_database`Patrick Steinhardt1-1/+1
2025-05-30Merge branch 'ps/midx-negative-packfile-cache'Junio C Hamano1-0/+11
2025-05-28packfile: explain ordering of how we look up auxiliary pack filesPatrick Steinhardt1-0/+11
2025-05-16oid_object_info(): drop type_name strbufJeff King1-6/+1
2025-04-15object-store: merge "object-store-ll.h" and "object-store.h"Patrick Steinhardt1-1/+1
2025-03-13builtin/pack-objects.c: freshen objects from existing cruft packsTaylor Blau1-1/+2
2025-01-28Merge branch 'jk/pack-header-parse-alignment-fix'Junio C Hamano1-0/+20
2025-01-21parse_pack_header_option(): avoid unaligned memory writesJeff King1-6/+9
2025-01-21packfile: factor out --pack_header argument parsingJeff King1-0/+17
2024-12-23Merge branch 'ps/build-sign-compare'Junio C Hamano1-0/+1
2024-12-06global: mark code units that generate warnings with `-Wsign-compare`Patrick Steinhardt1-0/+1
2024-12-04packfile.c: remove unnecessary prepare_packed_git() callTaylor Blau1-1/+0
2024-12-04config: make `packed_git_(limit|window_size)` non-global variablesKarthik Nayak1-8/+15
2024-12-04config: make `delta_base_cache_limit` a non-global variableKarthik Nayak1-2/+8
2024-12-04packfile: pass down repository to `for_each_packed_object`Karthik Nayak1-7/+7
2024-12-04packfile: pass down repository to `has_object[_kept]_pack`Karthik Nayak1-4/+5
2024-12-04packfile: pass down repository to `odb_pack_name`Karthik Nayak1-5/+4
2024-12-04packfile: pass `repository` to static function in the fileKarthik Nayak1-7/+8
2024-12-04packfile: use `repository` from `packed_git` directlyKarthik Nayak1-23/+27