Re: [ovs-dev] [PATCH] RFC: Add support for connection tracking.

2014-08-31 Thread loy wolfe
hi, how about connmark support: save_mark and restore_mark? ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] how to match and set pkt_mark field in ofctl?

2014-08-31 Thread loy wolfe
sorry, forgot the link http://benpfaff.org/~blp/ovs-fields.pdf On Mon, Sep 1, 2014 at 11:38 AM, loy wolfe wrote: > Hi, > > I see in the doc[1] that there is pkt_mark field, but I didn't find any > description in the ofctl manual. So, can I match against this field, and > set it in the action?

[ovs-dev] how to match and set pkt_mark field in ofctl?

2014-08-31 Thread loy wolfe
Hi, I see in the doc[1] that there is pkt_mark field, but I didn't find any description in the ofctl manual. So, can I match against this field, and set it in the action? ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/de

Re: [ovs-dev] [PATCH 1/2] datapath: Add nla_parse_strict().

2014-08-31 Thread Joe Stringer
An alternative interface, if we want this to be more flexible without adding new parameters for each possible variation is something like the following: diff --git a/datapath/linux/compat/include/linux/netlink.h b/datapath/linux/compat/include/linux/netlink.h index f172590..e3d29a2 100644 --- a/da

[ovs-dev] [PATCH] lib/ofp-actions: Checking for "resubmit" action within a group action

2014-08-31 Thread Srini Seetharaman
Fixing issue where "resubmit" action in a group action set was not considered sufficient to retain the full action set. This patch allows a group action set (considered terminal with OF1.4 and earlier spec) to have the "output" action come from a different table. Signed-off-by: Srini Seetharaman