From: Ben Pfaff Date: Mon, 2 Mar 2009 22:09:19 +0000 (-0800) Subject: vswitchd: Don't pass --monitor to secchan. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90ae3c23f5187d5b79c8f54a67fd6b5e88b6ec9a;p=openvswitch vswitchd: Don't pass --monitor to secchan. The --monitor option was deleted from secchan, because it was intended for monitoring the OpenFlow connection between secchan and the kernel. Since secchan no longer uses OpenFlow to talk to the kernel, the option made no sense. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 9c89d3ff..bac25b16 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -654,9 +654,6 @@ start_secchan(struct bridge *br) svec_add(&argv, "--fail=closed"); svec_add(&argv, "--no-stp"); if (!stat(ofp_rundir, &s)) { - svec_add_nocopy(&argv, - xasprintf("--monitor=punix:%s/secchan.monitor-%s", - ofp_rundir, br->name)); svec_add_nocopy(&argv, xasprintf("--listen=punix:%s/secchan.mgmt-%s", ofp_rundir, br->name));