X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=vswitchd%2Fovs-vswitchd.c;h=4352f5f743af394d3324af99c6a619e2b44c9fd9;hb=5792c5c64a194304b554e2c6b9a9a4c0216c08a4;hp=e95ee0aae57a3703abaa599ab31b344a4c5fc3d1;hpb=96fba48f52254c0cef942dcce130e33d290297da;p=openvswitch diff --git a/vswitchd/ovs-vswitchd.c b/vswitchd/ovs-vswitchd.c index e95ee0aa..4352f5f7 100644 --- a/vswitchd/ovs-vswitchd.c +++ b/vswitchd/ovs-vswitchd.c @@ -28,6 +28,7 @@ #include "command-line.h" #include "compiler.h" #include "daemon.h" +#include "dpif.h" #include "fault.h" #include "leak-checker.h" #include "mgmt.h" @@ -100,6 +101,7 @@ main(int argc, char *argv[]) need_reconfigure = true; } unixctl_server_run(unixctl); + dp_run(); if (need_reconfigure) { poll_immediate_wake(); @@ -108,6 +110,7 @@ main(int argc, char *argv[]) mgmt_wait(); bridge_wait(); unixctl_server_wait(unixctl); + dp_wait(); poll_block(); }