[ovs-dev] [PATCH] bridge: Don't log flow miss model on every reconfiguration.

Ben Pfaff blp at nicira.com
Fri Jun 28 16:01:46 UTC 2013


Thanks Alex, applied.

On Thu, Jun 27, 2013 at 01:02:10PM -0700, Alex Wang wrote:
> Looks good to me,
> 
> 
> On Wed, Jun 26, 2013 at 8:35 AM, Ben Pfaff <blp at nicira.com> wrote:
> 
> > Signed-off-by: Ben Pfaff <blp at nicira.com>
> > ---
> >  vswitchd/bridge.c |    5 +----
> >  1 file changed, 1 insertion(+), 4 deletions(-)
> >
> > diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c
> > index 4ac2b26..578c678 100644
> > --- a/vswitchd/bridge.c
> > +++ b/vswitchd/bridge.c
> > @@ -816,11 +816,8 @@ bridge_configure_flow_miss_model(const char *opt)
> >      if (opt) {
> >          if (strcmp(opt, "with-facets")) {
> >              model = OFPROTO_HANDLE_MISS_WITH_FACETS;
> > -            VLOG_INFO("Handling all flow misses by creating facets.\n");
> > -        }
> > -        if (strcmp(opt, "without-facets")) {
> > +        } else if (strcmp(opt, "without-facets")) {
> >              model = OFPROTO_HANDLE_MISS_WITHOUT_FACETS;
> > -            VLOG_INFO("Handling all flow misses without creating
> > facets.\n");
> >          }
> >      }
> >
> > --
> > 1.7.10.4
> >
> > _______________________________________________
> > dev mailing list
> > dev at openvswitch.org
> > http://openvswitch.org/mailman/listinfo/dev
> >



More information about the dev mailing list