diff options
author | Derrick Stolee <derrickstolee@github.com> | 2023-04-17 18:21:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-17 23:39:04 +0200 |
commit | 0d30feef3c55f63f8db1dc1e52071090d16dfaaf (patch) | |
tree | e5420913efcb4b5b70d9332b3923804601b55927 /pack-revindex.c | |
parent | Merge branch 'tb/pack-revindex-on-disk' into ds/fsck-pack-revindex (diff) | |
download | git-0d30feef3c55f63f8db1dc1e52071090d16dfaaf.tar.xz git-0d30feef3c55f63f8db1dc1e52071090d16dfaaf.zip |
fsck: create scaffolding for rev-index checks
The 'fsck' builtin checks many of Git's on-disk data structures, but
does not currently validate the pack rev-index files (a .rev file to
pair with a .pack and .idx file).
Before doing a more-involved check process, create the scaffolding
within builtin/fsck.c to have a new error type and add that error type
when the API method verify_pack_revindex() returns an error. That method
does nothing currently, but we will add checks to it in later changes.
For now, check that 'git fsck' succeeds without any errors in the normal
case. Future checks will be paired with tests that corrupt the .rev file
appropriately.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack-revindex.c')
-rw-r--r-- | pack-revindex.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pack-revindex.c b/pack-revindex.c index 29f5358b25..c3f2aaa3fe 100644 --- a/pack-revindex.c +++ b/pack-revindex.c @@ -301,6 +301,17 @@ int load_pack_revindex(struct repository *r, struct packed_git *p) return -1; } +/* + * verify_pack_revindex verifies that the on-disk rev-index for the given + * pack-file is the same that would be created if written from scratch. + * + * A negative number is returned on error. + */ +int verify_pack_revindex(struct packed_git *p) +{ + return 0; +} + int load_midx_revindex(struct multi_pack_index *m) { struct strbuf revindex_name = STRBUF_INIT; |