2
0
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:
Ethan Jackson
2011-09-15 11:23:08 -07:00
parent c3b07057fd
commit 18a2378164
8 changed files with 22 additions and 22 deletions

View File

@@ -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);
}
}