Re: [ovs-dev] [PATCH] ofp-flow: Fix return value for ofputil_decode_flow_stats_reply().

2018-02-13 Thread Ben Pfaff
Thanks for the review. I applied this to master. On Tue, Feb 13, 2018 at 03:14:56PM -0800, Yifeng Sun wrote: > Looks good to me. Thanks for the correction. > > Reviewed-by: Yifeng Sun > > On Tue, Feb 13, 2018 at 10:49 AM, Ben Pfaff wrote: > > > This

Re: [ovs-dev] [PATCH] ofp-flow: Fix return value for ofputil_decode_flow_stats_reply().

2018-02-13 Thread Yifeng Sun
Looks good to me. Thanks for the correction. Reviewed-by: Yifeng Sun On Tue, Feb 13, 2018 at 10:49 AM, Ben Pfaff wrote: > This function returned errno values for some errors and OFPERR_* values > for others. The callers all expected OFPERR_* values.

[ovs-dev] [PATCH] ofp-flow: Fix return value for ofputil_decode_flow_stats_reply().

2018-02-13 Thread Ben Pfaff
This function returned errno values for some errors and OFPERR_* values for others. The callers all expected OFPERR_* values. This fixes the problem. Signed-off-by: Ben Pfaff --- lib/ofp-flow.c | 36 1 file changed, 20 insertions(+), 16