Re: [ovs-dev] [PATCH 1/2] ofp-prop: Add helper for parsing and storing of ovs_u128.

2023-10-03 Thread Ales Musil
On Tue, Oct 3, 2023 at 3:01 PM Ilya Maximets wrote: > > On 10/3/23 07:56, Ales Musil wrote: > > Add helper methods that allow us to store and parse the > > ovs_u128 type. > > > > Signed-off-by: Ales Musil > > --- > > include/openvswitch/ofp-prop.h | 3 +++ > > lib/ofp-prop.c |

Re: [ovs-dev] [PATCH 1/2] ofp-prop: Add helper for parsing and storing of ovs_u128.

2023-10-03 Thread Ilya Maximets
On 10/3/23 07:56, Ales Musil wrote: > Add helper methods that allow us to store and parse the > ovs_u128 type. > > Signed-off-by: Ales Musil > --- > include/openvswitch/ofp-prop.h | 3 +++ > lib/ofp-prop.c | 30 ++ > 2 files changed, 33 insertions(+)

Re: [ovs-dev] [PATCH 1/2] ofp-prop: Add helper for parsing and storing of ovs_u128.

2023-10-03 Thread Simon Horman
On Tue, Oct 03, 2023 at 07:56:29AM +0200, Ales Musil wrote: > Add helper methods that allow us to store and parse the > ovs_u128 type. > > Signed-off-by: Ales Musil Acked-by: Simon Horman ___ dev mailing list d...@openvswitch.org

[ovs-dev] [PATCH 1/2] ofp-prop: Add helper for parsing and storing of ovs_u128.

2023-10-02 Thread Ales Musil
Add helper methods that allow us to store and parse the ovs_u128 type. Signed-off-by: Ales Musil --- include/openvswitch/ofp-prop.h | 3 +++ lib/ofp-prop.c | 30 ++ 2 files changed, 33 insertions(+) diff --git a/include/openvswitch/ofp-prop.h