netdev: Fix an use of uninitialized mutex.
authorAlex Wang <alexw@nicira.com>
Tue, 29 Apr 2014 06:42:51 +0000 (23:42 -0700)
committerAlex Wang <alexw@nicira.com>
Tue, 29 Apr 2014 14:54:49 +0000 (07:54 -0700)
Commit 05bf6d3c62e1d (ovs-thread: Add checking for mutex and
rwlock initialization.) helps find an use of uninitialized
mutex (netdev_class_mutex) during upgrade.  The assertion
check aborts the ovs.

This commit fixes the issue by adding the proper initialization.

Bug #1239914.
Bug #1240598.
Bug #1240626.

Signed-off-by: Alex Wang <alexw@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
lib/netdev.c

index 45a4165..2fc1834 100644 (file)
@@ -151,6 +151,7 @@ netdev_run(void)
 {
     struct netdev_registered_class *rc;
 
+    netdev_initialize();
     ovs_mutex_lock(&netdev_class_mutex);
     HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
         if (rc->class->run) {