mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
59536316c9
- Use __atomic_fetch_add for stat_mgr counters to prevent lost updates under concurrent ISR/task access (H1) - Use __atomic_load_n with ACQUIRE ordering for ref_count spin-loops (L1) - Remove unnecessary BLE_LOG_IRAM_ATTR from ble_log_rt_task since it calls flash-resident functions and cannot run during flash ops (L3) - Add parentheses to BLE_LOG_TRANS_FREE_SPACE and BLE_LOG_MAKE_FRAME_META macro parameters to prevent operator precedence bugs (M6)