-
Notifications
You must be signed in to change notification settings - Fork 338
DAOS-18356 object: skip key checksum for value enumeration #17319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
During enumeration, key and value checksum verification are performed separately. In the value path (csum_enum_verify_recx/sv), a dummy IOD is passed to daos_csummer_verify_iod(), which causes the ISA-L SHA-256 update (isal_mh_sha256_update()) to fail. Signed-off-by: Liang Zhen <gnailzenh@gmail.com>
|
Ticket title is 'scrubber/rebuild.py:TestScrubberEvictWithRebuild.test_target_eviction_during_rebuild - engine core dump' |
src/object/cli_shard.c
Outdated
| ci_to_compare); | ||
| rc = csum_enum_verify_sv(csummer, rec, &enum_type_val, ci_to_compare); | ||
| csummer->dcs_skip_key_calc = skip_key_calc; | ||
| csummer->dcs_skip_key_verify = skip_key_verify; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks there are some other cases need be fixed as well, for example, csummer_verify_recx() in src/object/srv_enum.c.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indeed, thanks
Signed-off-by: Liang Zhen <gnailzenh@gmail.com>
|
Test stage NLT on EL 8.8 completed with status UNSTABLE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net/job/daos-stack/job/daos//view/change-requests/job/PR-17319/2/testReport/ |
|
Test stage NLT on EL 8.8 completed with status UNSTABLE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net/job/daos-stack/job/daos//view/change-requests/job/PR-17319/3/testReport/ |
|
Test stage Functional Hardware Medium MD on SSD completed with status UNSTABLE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net/job/daos-stack/job/daos//view/change-requests/job/PR-17319/3/testReport/ |
|
Test stage Functional Hardware Medium MD on SSD completed with status FAILURE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net//job/daos-stack/job/daos/view/change-requests/job/PR-17319/4/execution/node/1343/log |
|
Test stage Functional Hardware Medium Verbs Provider MD on SSD completed with status FAILURE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net//job/daos-stack/job/daos/view/change-requests/job/PR-17319/4/execution/node/1310/log |
During enumeration, key and value checksum verification are performed separately. In the value path (csum_enum_verify_recx/sv), a dummy IOD is passed to daos_csummer_verify_iod(), which causes the ISA-L SHA-256 update (isal_mh_sha256_update()) to fail.
Steps for the author:
After all prior steps are complete: