You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
*data_hdr = run_data_hdr; is the problematic assignment.
Produces the following issue:
==28070== Number of stores made without adding to transaction: 14
==28070== Stores made without adding to transactions:
==28070== [0] at 0x4C471F7: heap_run_init (heap.c:393)
==28070== by 0x4C47AFE: heap_create_run (heap.c:517)
==28070== by 0x4C48A01: heap_ensure_run_bucket_filled (heap.c:825)
==28070== by 0x4C48DF0: heap_get_bestfit_block (heap.c:909)
==28070== by 0x4C5AD50: palloc_operation (palloc.c:211)
==28070== by 0x4C5C1D0: pmalloc_operation (pmalloc.c:116)
==28070== by 0x4C5C3F7: pmalloc_construct (pmalloc.c:166)
==28070== by 0x4C648E1: tx_alloc_common (tx.c:1010)
==28070== by 0x4C679B1: pmemobj_tx_alloc (tx.c:1961)
==28070== by 0x404F2B: sc8_verify_abort (obj_convert.c:467)
==28070== by 0x405A67: main (obj_convert.c:594)
==28070== Address: 0x6102490 size: 16
But only sometimes (can't reproduce this reliably outside of this specific case: pmem/pmdk#2242).
Regardless of anything else, the report is false, because the store is clearly added to the transaction.
Wrapping the entire code section in a add_to_tx, that encompasses the entire modifiable area, fixes the problem.
The text was updated successfully, but these errors were encountered:
This code:
*data_hdr = run_data_hdr;
is the problematic assignment.Produces the following issue:
But only sometimes (can't reproduce this reliably outside of this specific case: pmem/pmdk#2242).
Regardless of anything else, the report is false, because the store is clearly added to the transaction.
Wrapping the entire code section in a add_to_tx, that encompasses the entire modifiable area, fixes the problem.
The text was updated successfully, but these errors were encountered: