mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
notifiers: Rename run and wait functions.
It makes more sense to call nln_notifier_run() and nln_notifier_wait() simply nln_run() and nln_wait() since they don't operate on notifiers but the entire nln object. This patch changes the nln and the rtnetlink-link modules to the new convention.
This commit is contained in:
@@ -320,7 +320,7 @@ static void
|
||||
dpif_linux_run(struct dpif *dpif OVS_UNUSED)
|
||||
{
|
||||
if (nln) {
|
||||
nln_notifier_run(nln);
|
||||
nln_run(nln);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -328,7 +328,7 @@ static void
|
||||
dpif_linux_wait(struct dpif *dpif OVS_UNUSED)
|
||||
{
|
||||
if (nln) {
|
||||
nln_notifier_wait(nln);
|
||||
nln_wait(nln);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user