Re: [ovs-discuss] meter action for OF1.5

2017-06-06 Thread Ben Pfaff
I forgot to thank you for working on this. Thanks! ovs_instruction_name_from_type() takes an ovs_instruction_type, so its result should be invariant of the OpenFlow version. ofpact_is_apply_actions() is only used in one place, to encode instructions, so it should be straightforward to update

Re: [ovs-discuss] meter action for OF1.5

2017-06-06 Thread Ali Volkan Atli
ovs_instruction_name_from_type and ofpact_is_apply_actions Meter is instruction for OF1.3 but it is an action-set for OF1.5, so I need to distinguish - Volkan Ben Pfaff wrote On Tue, Jun 06, 2017 at 12:37:56PM +, Ali Volkan Atli wrote: > I'm trying to contribute meter action for

Re: [ovs-discuss] meter action for OF1.5

2017-06-06 Thread Ben Pfaff
On Tue, Jun 06, 2017 at 12:37:56PM +, Ali Volkan Atli wrote: > I'm trying to contribute meter action for OF1.5 by using the existing > patch "https://patchwork.ozlabs.org/patch/731701/; in which meter is > instruction. Currently it seems working using ovs-ofctl, but I am not > sure if I can

[ovs-discuss] meter action for OF1.5

2017-06-06 Thread Ali Volkan Atli
Hi all I'm trying to contribute meter action for OF1.5 by using the existing patch "https://patchwork.ozlabs.org/patch/731701/; in which meter is instruction. Currently it seems working using ovs-ofctl, but I am not sure if I can pass the version info as a parameter to the related function, I