ofproto-dpif: Reconfigure tunnel in port_modified().
authorEthan Jackson <ethan@nicira.com>
Mon, 17 Jun 2013 21:09:50 +0000 (14:09 -0700)
committerEthan Jackson <ethan@nicira.com>
Tue, 18 Jun 2013 19:52:00 +0000 (12:52 -0700)
This seems like the logical place to do it.

Signed-off-by: Ethan Jackson <ethan@nicira.com>
ofproto/ofproto-dpif.c

index 194f5bd..5b4def0 100644 (file)
@@ -1557,6 +1557,11 @@ port_modified(struct ofport *port_)
     if (port->cfm) {
         cfm_set_netdev(port->cfm, port->up.netdev);
     }
+
+    if (port->tnl_port && tnl_port_reconfigure(&port->up, port->odp_port,
+                                               &port->tnl_port)) {
+        ofproto_dpif_cast(port->up.ofproto)->backer->need_revalidate = true;
+    }
 }
 
 static void
@@ -2889,12 +2894,6 @@ port_run(struct ofport_dpif *ofport)
 
     port_run_fast(ofport);
 
-    if (ofport->tnl_port
-        && tnl_port_reconfigure(&ofport->up, ofport->odp_port,
-                                &ofport->tnl_port)) {
-        ofproto_dpif_cast(ofport->up.ofproto)->backer->need_revalidate = true;
-    }
-
     if (ofport->cfm) {
         int cfm_opup = cfm_get_opup(ofport->cfm);