mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 10:30:22 +01:00
manager: ensure proper disposal of unrealized devices
When remove_device() is called on an already unrealized device, we
should release it from master if necessary and clear its IP
configurations to avoid leaks.
https://bugzilla.redhat.com/show_bug.cgi?id=1433303
(cherry picked from commit 2e0c3d1dac)
This commit is contained in:
parent
6311bf6666
commit
427a3e5cff
1 changed files with 5 additions and 0 deletions
|
|
@ -1023,7 +1023,12 @@ remove_device (NMManager *self,
|
|||
|
||||
g_signal_emit (self, signals[DEVICE_REMOVED], 0, device);
|
||||
_notify (self, PROP_DEVICES);
|
||||
} else {
|
||||
/* unrealize() does not release a slave device from master and
|
||||
* clear IP configurations, do it here */
|
||||
nm_device_removed (device, TRUE);
|
||||
}
|
||||
|
||||
g_signal_emit (self, signals[INTERNAL_DEVICE_REMOVED], 0, device);
|
||||
_notify (self, PROP_ALL_DEVICES);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue