vvfat: Fix usage of info.file.offset
The field is marked as "the offset in the file (in clusters)", but it was being used like this `cluster_size*(nums)+mapping->info.file.offset`, which is incorrect. Signed-off-by: Amjad Alsharafi <amjadsharafi10@gmail.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Message-ID: <72f19a7903886dda1aa78bcae0e17702ee939262.1721470238.git.amjadsharafi10@gmail.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com> (cherry picked from commit 21b25a0e466a5bba0a45600bb8100ab564202ed1) Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
17962e1ea8
commit
7dccb4fd0b
@ -1407,7 +1407,9 @@ read_cluster_directory:
|
||||
|
||||
assert(s->current_fd);
|
||||
|
||||
offset=s->cluster_size*(cluster_num-s->current_mapping->begin)+s->current_mapping->info.file.offset;
|
||||
offset = s->cluster_size *
|
||||
((cluster_num - s->current_mapping->begin)
|
||||
+ s->current_mapping->info.file.offset);
|
||||
if(lseek(s->current_fd, offset, SEEK_SET)!=offset)
|
||||
return -3;
|
||||
s->cluster=s->cluster_buffer;
|
||||
@ -1928,8 +1930,9 @@ static uint32_t get_cluster_count_for_direntry(BDRVVVFATState* s,
|
||||
(mapping->mode & MODE_DIRECTORY) == 0) {
|
||||
|
||||
/* was modified in qcow */
|
||||
if (offset != mapping->info.file.offset + s->cluster_size
|
||||
* (cluster_num - mapping->begin)) {
|
||||
if (offset != s->cluster_size
|
||||
* ((cluster_num - mapping->begin)
|
||||
+ mapping->info.file.offset)) {
|
||||
/* offset of this cluster in file chain has changed */
|
||||
abort();
|
||||
copy_it = 1;
|
||||
@ -2402,7 +2405,7 @@ static int commit_mappings(BDRVVVFATState* s,
|
||||
(mapping->end - mapping->begin);
|
||||
} else
|
||||
next_mapping->info.file.offset = mapping->info.file.offset +
|
||||
mapping->end - mapping->begin;
|
||||
(mapping->end - mapping->begin);
|
||||
|
||||
mapping = next_mapping;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user