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

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