Better atomic using

This commit is contained in:
wwqgtxx 2025-03-12 15:58:38 +08:00 committed by 世界
parent 22b811f938
commit 7f3343169a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 4 additions and 8 deletions

View file

@ -165,12 +165,11 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
if defaultInterface == nil {
return ErrNoRoute
}
oldInterface := m.defaultInterface.Load()
newInterface, err := m.interfaceFinder.ByIndex(defaultInterface.Index)
if err != nil {
return E.Cause(err, "find updated interface: ", defaultInterface.Name)
}
m.defaultInterface.Store(newInterface)
oldInterface := m.defaultInterface.Swap(newInterface)
if oldInterface != nil && oldInterface.Equals(*newInterface) {
return nil
}