X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=vswitchd%2Fovs-vswitchd.c;h=a7b43f7b4f34535e3ce429e0f416bb579c8e5a20;hb=c798b21c6a;hp=4352f5f743af394d3324af99c6a619e2b44c9fd9;hpb=3b01baa3970139c3a195017ab1ea3e42761e3db2;p=openvswitch diff --git a/vswitchd/ovs-vswitchd.c b/vswitchd/ovs-vswitchd.c index 4352f5f7..a7b43f7b 100644 --- a/vswitchd/ovs-vswitchd.c +++ b/vswitchd/ovs-vswitchd.c @@ -32,9 +32,9 @@ #include "fault.h" #include "leak-checker.h" #include "mgmt.h" +#include "netdev.h" #include "ovs-vswitchd.h" #include "poll-loop.h" -#include "port.h" #include "proc-net-compat.h" #include "process.h" #include "signals.h" @@ -84,7 +84,6 @@ main(int argc, char *argv[]) cfg_read(); mgmt_init(); bridge_init(); - port_init(); mgmt_reconfigure(); need_reconfigure = false; @@ -102,6 +101,7 @@ main(int argc, char *argv[]) } unixctl_server_run(unixctl); dp_run(); + netdev_run(); if (need_reconfigure) { poll_immediate_wake(); @@ -111,6 +111,7 @@ main(int argc, char *argv[]) bridge_wait(); unixctl_server_wait(unixctl); dp_wait(); + netdev_wait(); poll_block(); } @@ -133,7 +134,6 @@ reconfigure(void) cfg_read(); bridge_reconfigure(); mgmt_reconfigure(); - port_reconfigure(); for (i = 0; i < n_conns; i++) { unixctl_command_reply(conns[i], 202, NULL);