Conversation
sebsura
requested changes
Feb 20, 2025
e2e5f57 to
a17ad87
Compare
sebsura
requested changes
Feb 21, 2025
a54158c to
0cac495
Compare
This will fix sign comparision warnings when compiling 32bit binaries. There are already a lot of similar casts, so I suspect these ones were just forgotten.
This fixes some conversion warnings when compiling bareos for 32bit. The types of config::block_file::End and config::part_file::End are not the same as fvec<block>::size_type or fvec<part>::size_type for 32bit, beacuse size_t is not uint64_t. This change does not change the types of the structures, because these values are serialized on the volume.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thank you for contributing to the Bareos Project!
While compiling a debian package for armhf (32bit) I encountered two errors.
The first errors in
src/stored/backends/chunked_device.cc:These errors are likely caused because the casts were just forgotten. There are multiple similar code lines around the locations with the appropriate casts.
The second error in
core/src/stored/backends/dedupable/volume.cc:These are errors in the new Dedupable Storage Backend. The pull request does not alter any data types of any field because I believe that the dedup::config structures are directly serialized into the files on the storage. So the implementation simply throws. if the config contains values that are too large.
Please check
If you have any questions or problems, please give a comment in the PR.
Helpful documentation and best practices
Checklist for the reviewer of the PR (will be processed by the Bareos team)
Make sure you check/merge the PR using
devtools/pr-toolto have some simple automated checks run and a proper changelog record added.General
Required backport PRs have been createdSource code quality