> Use miniflow as a flow key in the userspace datapath classifier.  The
> miniflow is expanded for upcalls, but for existing datapath flows, the
> key need not be expanded.
> 
> Signed-off-by: Jarno Rajahalme <jrajaha...@nicira.com>

Reviewed-by: YAMAMOTO Takashi <yamam...@valinux.co.jp>

> @@ -2144,8 +2157,9 @@ dp_execute_cb(void *aux_, struct ofpbuf *packet,
>  
>          hash_act = nl_attr_get(a);
>          if (hash_act->hash_alg == OVS_HASH_ALG_L4) {
> -
> -            hash = flow_hash_symmetric_l4(aux->key, hash_act->hash_bias);
> +            /* Hash need not be symmetric, nor does it need to include
> +             * L2 fields. */
> +            hash = miniflow_hash_5tuple(aux->key, hash_act->hash_bias);

how do you think about ipv6?

YAMAMOTO Takashi
_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev

Reply via email to