mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-08 02:18:39 +02:00
platform: fix detection of link-type for netlink event
Often a netlink event doesn't contain enough information to determine the link type. Then we consult sysctl or ethtool. However, if we already have the same object cached, we want to reused the (once detected) link-type. There was a bug in lookup of the cached object.
This commit is contained in:
parent
9ce0995efb
commit
9c0cfbbae6
1 changed files with 1 additions and 1 deletions
|
|
@ -610,7 +610,7 @@ _lookup_cached_link (const NMPCache *cache, int ifindex, gboolean *completed_fro
|
|||
if (!*completed_from_cache) {
|
||||
obj = ifindex > 0 && cache ? nmp_cache_lookup_link (cache, ifindex) : NULL;
|
||||
|
||||
if (obj && !obj->_link.netlink.is_in_netlink)
|
||||
if (obj && obj->_link.netlink.is_in_netlink)
|
||||
*link_cached = obj;
|
||||
else
|
||||
*link_cached = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue