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

Alex Wang alexw at nicira.com
Thu Jun 27 20:02:10 UTC 2013


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
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openvswitch.org/pipermail/ovs-dev/attachments/20130627/cd0d8a79/attachment-0003.html>


More information about the dev mailing list