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

@@ -469,14 +469,14 @@ netdev_linux_init(void)
static void
netdev_linux_run(void)
{
rtnetlink_link_notifier_run();
rtnetlink_link_run();
netdev_linux_miimon_run();
}
static void
netdev_linux_wait(void)
{
rtnetlink_link_notifier_wait();
rtnetlink_link_wait();
netdev_linux_miimon_wait();
}