Acked-by: Jarno Rajahalme <[email protected]>
Two small nits below,
Jarno
(snip)
> diff --git a/lib/ofp-util.c b/lib/ofp-util.c
> index 8753a5a..51d4fb4 100644
> --- a/lib/ofp-util.c
> +++ b/lib/ofp-util.c
> @@ -4886,6 +4886,140 @@ ofputil_append_table_features_reply(const struct
> ofputil_table_features *tf,
> }
>
> static enum ofperr
> +parse_table_desc_eviction_property(struct ofpbuf *property,
> + struct ofputil_table_desc *td)
Indentation is off by one.
> +{
> + struct ofp14_table_mod_prop_eviction *ote = property->data;
> +
> + if (property->size != sizeof *ote) {
> + return OFPERR_OFPBPC_BAD_LEN;
> + }
> +
> + td->eviction_flags = ntohl(ote->flags);
> + return 0;
> +}
> +
> +
Extra newline here.
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev