Re: [ovs-dev] [PATCH v1] socket-util: Fix recursion issue in sendmmsg

2017-07-14 Thread Ben Pfaff
On Fri, Jul 14, 2017 at 01:11:01PM -0700, Joe Stringer wrote: > On 14 July 2017 at 08:41, Ben Pfaff wrote: > > On Fri, Jul 14, 2017 at 03:06:50PM +, Zhenyu Gao wrote: > >> The wrap_sendmmsg has infinite recursion issue. > >> Fix it by undef sendmmsg. > >> > >> Signed-off-by: Zhenyu Gao > > >

Re: [ovs-dev] [PATCH v1] socket-util: Fix recursion issue in sendmmsg

2017-07-14 Thread Joe Stringer
On 14 July 2017 at 08:41, Ben Pfaff wrote: > On Fri, Jul 14, 2017 at 03:06:50PM +, Zhenyu Gao wrote: >> The wrap_sendmmsg has infinite recursion issue. >> Fix it by undef sendmmsg. >> >> Signed-off-by: Zhenyu Gao > > Thanks! I applied this to master. It looks like this breaks Travis: https:

Re: [ovs-dev] [PATCH v1] socket-util: Fix recursion issue in sendmmsg

2017-07-14 Thread Ben Pfaff
On Fri, Jul 14, 2017 at 03:06:50PM +, Zhenyu Gao wrote: > The wrap_sendmmsg has infinite recursion issue. > Fix it by undef sendmmsg. > > Signed-off-by: Zhenyu Gao Thanks! I applied this to master. ___ dev mailing list d...@openvswitch.org https:/

[ovs-dev] [PATCH v1] socket-util: Fix recursion issue in sendmmsg

2017-07-14 Thread Zhenyu Gao
The wrap_sendmmsg has infinite recursion issue. Fix it by undef sendmmsg. Signed-off-by: Zhenyu Gao --- lib/socket-util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/socket-util.c b/lib/socket-util.c index de7df67..04401d4 100644 --- a/lib/socket-util.c +++ b/lib/socket-util.c @@