diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-25 06:42:12 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-25 06:42:12 +0200 |
commit | 8f0f1f4c8047a97012c55dc057780ff76667aacc (patch) | |
tree | 6ab2fb3eab80928ae2f9ce07ed12d2406acc3f03 /lib/sqfs/blk_proc/fragtbl.c | |
parent | d58ec4c9a11987e37bf158760bd18294f293beea (diff) |
Cleanup "signature" misnomer. It's actually a hash value.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/blk_proc/fragtbl.c')
-rw-r--r-- | lib/sqfs/blk_proc/fragtbl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sqfs/blk_proc/fragtbl.c b/lib/sqfs/blk_proc/fragtbl.c index 2467036..39e8136 100644 --- a/lib/sqfs/blk_proc/fragtbl.c +++ b/lib/sqfs/blk_proc/fragtbl.c @@ -49,7 +49,7 @@ static int grow_deduplication_list(sqfs_block_processor_t *proc) } static int store_fragment(sqfs_block_processor_t *proc, sqfs_block_t *frag, - uint64_t signature) + uint64_t hash) { int err = grow_deduplication_list(proc); @@ -58,7 +58,7 @@ static int store_fragment(sqfs_block_processor_t *proc, sqfs_block_t *frag, proc->frag_list[proc->frag_list_num].index = proc->frag_block->index; proc->frag_list[proc->frag_list_num].offset = proc->frag_block->size; - proc->frag_list[proc->frag_list_num].signature = signature; + proc->frag_list[proc->frag_list_num].hash = hash; proc->frag_list_num += 1; sqfs_inode_set_frag_location(frag->inode, proc->frag_block->index, @@ -75,14 +75,14 @@ static int store_fragment(sqfs_block_processor_t *proc, sqfs_block_t *frag, int handle_fragment(sqfs_block_processor_t *proc, sqfs_block_t *frag, sqfs_block_t **blk_out) { - uint64_t signature; + uint64_t hash; size_t i, size; int err; - signature = MK_BLK_SIG(frag->checksum, frag->size); + hash = MK_BLK_HASH(frag->checksum, frag->size); for (i = 0; i < proc->frag_list_num; ++i) { - if (proc->frag_list[i].signature == signature) { + if (proc->frag_list[i].hash == hash) { sqfs_inode_set_frag_location(frag->inode, proc->frag_list[i].index, proc->frag_list[i].offset); @@ -116,7 +116,7 @@ int handle_fragment(sqfs_block_processor_t *proc, sqfs_block_t *frag, proc->frag_block->flags = SQFS_BLK_FRAGMENT_BLOCK; } - err = store_fragment(proc, frag, signature); + err = store_fragment(proc, frag, hash); if (err) goto fail; |