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
Looking at how update_out is used, it is always set using an atomic operation, but sometimes it is read using atomic_load (bgp_vty.c:7143) and other times not (bgp_show_peer, bgp_snmp.c). It looks like atomic should always be used. Same issue exists for other _out counters incremented in bgp_write.
The text was updated successfully, but these errors were encountered:
Looking at how update_out is used, it is always set using an atomic operation, but sometimes it is read using atomic_load (bgp_vty.c:7143) and other times not (bgp_show_peer, bgp_snmp.c). It looks like atomic should always be used. Same issue exists for other _out counters incremented in bgp_write.
The text was updated successfully, but these errors were encountered: