Home
last modified time | relevance | path

Searched refs:changedInterfaces (Results 1 – 4 of 4) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/mdns/mdns/
H A D0005-Use-list-for-changed-interfaces.patch122 + AddInterfaceIndexToList(changedInterfaces, pRSMsg->ifam_index);
133 - mDNSu32 changedInterfaces = 0;
134 + GenLinkedList changedInterfaces;
143 + InitLinkedList(&changedInterfaces, offsetof(NetworkInterfaceIndex, Next));
147 - changedInterfaces |= ProcessRoutingNotification(pChgRec->NotifySD);
148 + ProcessRoutingNotification(pChgRec->NotifySD, &changedInterfaces);
154 // configuration, more care should be paid to changedInterfaces.
155 - if (changedInterfaces)
156 + if (changedInterfaces.Head != NULL)
159 + while ((changedInterface = (NetworkInterfaceIndex*)changedInterfaces.Head) != NULL)
[all …]
H A D0006-Handle-noisy-netlink-sockets.patch69 GenLinkedList changedInterfaces;
84 - // configuration, more care should be paid to changedInterfaces.
85 - if (changedInterfaces.Head != NULL)
89 + if (changedInterfaces.Head == NULL) goto cleanup;
230 while ((changedInterface = (NetworkInterfaceIndex*)changedInterfaces.Head) != NULL)
232 RemoveFromList(&changedInterfaces, changedInterface);
H A D0007-Mark-deleted-interfaces-as-being-changed.patch35 … AddInterfaceIndexToList(changedInterfaces, ((struct ifinfomsg*) NLMSG_DATA(pNLMsg))->ifi_index);
37 … AddInterfaceIndexToList(changedInterfaces, ((struct ifaddrmsg*) NLMSG_DATA(pNLMsg))->ifa_index);
/openbmc/smbios-mdr/src/
H A Dcpuinfo_utils.cpp247 changedInterfaces; in subscribeToProperty() local
248 reply.read(changedInterfaces); in subscribeToProperty()
250 for (const auto& [changedInterface, changedProps] : changedInterfaces) in subscribeToProperty()