packfile: rename `packfile_store_get_all_packs()`
In a preceding commit we have removed `packfile_store_get_packs()`. With this function removed it's somewhat useless to still have the "all" infix in `packfile_store_get_all_packs()`. Rename the latter to drop that infix. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>main
parent
86d8c62f48
commit
ecad863c12
|
|
@ -976,7 +976,7 @@ static int store_object(
|
||||||
if (e->idx.offset) {
|
if (e->idx.offset) {
|
||||||
duplicate_count_by_type[type]++;
|
duplicate_count_by_type[type]++;
|
||||||
return 1;
|
return 1;
|
||||||
} else if (find_oid_pack(&oid, packfile_store_get_all_packs(packs))) {
|
} else if (find_oid_pack(&oid, packfile_store_get_packs(packs))) {
|
||||||
e->type = type;
|
e->type = type;
|
||||||
e->pack_id = MAX_PACK_ID;
|
e->pack_id = MAX_PACK_ID;
|
||||||
e->idx.offset = 1; /* just not zero! */
|
e->idx.offset = 1; /* just not zero! */
|
||||||
|
|
@ -1177,7 +1177,7 @@ static void stream_blob(uintmax_t len, struct object_id *oidout, uintmax_t mark)
|
||||||
duplicate_count_by_type[OBJ_BLOB]++;
|
duplicate_count_by_type[OBJ_BLOB]++;
|
||||||
truncate_pack(&checkpoint);
|
truncate_pack(&checkpoint);
|
||||||
|
|
||||||
} else if (find_oid_pack(&oid, packfile_store_get_all_packs(packs))) {
|
} else if (find_oid_pack(&oid, packfile_store_get_packs(packs))) {
|
||||||
e->type = OBJ_BLOB;
|
e->type = OBJ_BLOB;
|
||||||
e->pack_id = MAX_PACK_ID;
|
e->pack_id = MAX_PACK_ID;
|
||||||
e->idx.offset = 1; /* just not zero! */
|
e->idx.offset = 1; /* just not zero! */
|
||||||
|
|
|
||||||
|
|
@ -4394,7 +4394,7 @@ static int has_sha1_pack_kept_or_nonlocal(const struct object_id *oid)
|
||||||
struct packed_git *p;
|
struct packed_git *p;
|
||||||
|
|
||||||
p = (last_found != (void *)1) ? last_found :
|
p = (last_found != (void *)1) ? last_found :
|
||||||
packfile_store_get_all_packs(packs);
|
packfile_store_get_packs(packs);
|
||||||
|
|
||||||
while (p) {
|
while (p) {
|
||||||
if ((!p->pack_local || p->pack_keep ||
|
if ((!p->pack_local || p->pack_keep ||
|
||||||
|
|
@ -4404,7 +4404,7 @@ static int has_sha1_pack_kept_or_nonlocal(const struct object_id *oid)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (p == last_found)
|
if (p == last_found)
|
||||||
p = packfile_store_get_all_packs(packs);
|
p = packfile_store_get_packs(packs);
|
||||||
else
|
else
|
||||||
p = p->next;
|
p = p->next;
|
||||||
if (p == last_found)
|
if (p == last_found)
|
||||||
|
|
|
||||||
|
|
@ -1027,7 +1027,7 @@ void packfile_store_reprepare(struct packfile_store *store)
|
||||||
packfile_store_prepare(store);
|
packfile_store_prepare(store);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct packed_git *packfile_store_get_all_packs(struct packfile_store *store)
|
struct packed_git *packfile_store_get_packs(struct packfile_store *store)
|
||||||
{
|
{
|
||||||
packfile_store_prepare(store);
|
packfile_store_prepare(store);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -142,13 +142,13 @@ void packfile_store_add_pack(struct packfile_store *store,
|
||||||
* repository.
|
* repository.
|
||||||
*/
|
*/
|
||||||
#define repo_for_each_pack(repo, p) \
|
#define repo_for_each_pack(repo, p) \
|
||||||
for (p = packfile_store_get_all_packs(repo->objects->packfiles); p; p = p->next)
|
for (p = packfile_store_get_packs(repo->objects->packfiles); p; p = p->next)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get all packs managed by the given store, including packfiles that are
|
* Get all packs managed by the given store, including packfiles that are
|
||||||
* referenced by multi-pack indices.
|
* referenced by multi-pack indices.
|
||||||
*/
|
*/
|
||||||
struct packed_git *packfile_store_get_all_packs(struct packfile_store *store);
|
struct packed_git *packfile_store_get_packs(struct packfile_store *store);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get all packs in most-recently-used order.
|
* Get all packs in most-recently-used order.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue