Re: [ovs-dev] [PATCH] ofproto-dpif: Correct endian problem in recv_upcalls()

2013-10-01 Thread Ben Pfaff
On Tue, Oct 01, 2013 at 03:15:22PM +0900, Simon Horman wrote: > Use nl_attr_get_u32() instead of nl_attr_get_be32() to parse nla > so that the decoded value which is passed to mhash_add() > is host byte order as mhash_add() expects. > > This resolves a minor regression introduced by > 10e576406c74

[ovs-dev] [PATCH] ofproto-dpif: Correct endian problem in recv_upcalls()

2013-09-30 Thread Simon Horman
Use nl_attr_get_u32() instead of nl_attr_get_be32() to parse nla so that the decoded value which is passed to mhash_add() is host byte order as mhash_add() expects. This resolves a minor regression introduced by 10e576406c7444ef ("ofproto-dpif: Move special upcall handling into ofproto-dpif-upcall